We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello @jrfnl ,
I was in the process of manual installation of SimplePie on Centos 7 with PHP 7.2, Apache 2.2, MYSQL 5.5 using
git clone https://github.com/simplepie/simplepie.git
And followed these steps :
http://simplepie.org/wiki/setup/setup
However, when i checked the file src/SimplePie.php, it seems that the version is not updated i.e
public const VERSION = '1.8.0'; instead of `public const VERSION = '1.8.1';
public const VERSION = '1.8.0';
Could you please check and update this.
The text was updated successfully, but these errors were encountered:
1.8.1 is in one-dot-eight branch: https://github.com/simplepie/simplepie/blob/1.8.1/src/SimplePie.php#L73 master contains the work on upcoming 1.9 release.
one-dot-eight
master
See also https://github.com/simplepie/simplepie#project-status
Sorry, something went wrong.
Hello @jtojnar ,
Thanks for the quick response .
So I would have to do git clone -b one-dot-eight https://github.com/simplepie/simplepie.git
git clone -b one-dot-eight https://github.com/simplepie/simplepie.git
For getting the 1.8 branch right ?.
Regards.
Right. Or you can use git switch one-dot-eight in the existing repo. Or switch to 1.8.1 directly if you want the tagged version.
git switch one-dot-eight
1.8.1
Okay cool . Thanks for the support.
No branches or pull requests
Hello @jrfnl ,
I was in the process of manual installation of SimplePie on Centos 7 with PHP 7.2, Apache 2.2, MYSQL 5.5 using
git clone https://github.com/simplepie/simplepie.git
And followed these steps :
http://simplepie.org/wiki/setup/setup
However, when i checked the file src/SimplePie.php, it seems that the version is not updated i.e
public const VERSION = '1.8.0';
instead of `public const VERSION = '1.8.1';Could you please check and update this.
The text was updated successfully, but these errors were encountered: