Skip to content

Commit

Permalink
prepare stable release 4.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Oct 5, 2015
1 parent 1943be3 commit 09764a1
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion bin/phpcompatinfo
Expand Up @@ -48,5 +48,5 @@ use Bartlett\CompatInfo\Console\Application;

Environment::setScanDir();

$application = new Application($appName, '4.4');
$application = new Application($appName, '4.5');
$application->run();
2 changes: 1 addition & 1 deletion build/build.xml
Expand Up @@ -21,7 +21,7 @@
Project properties
======================================================================
-->
<property name="build.short-version" value="4.4" />
<property name="build.short-version" value="4.5" />
<property name="build.version" value="${build.short-version}.0" />

<!--
Expand Down
Binary file modified data/compatinfo.sqlite
Binary file not shown.
12 changes: 6 additions & 6 deletions docs/getting-started.asciidoc
Expand Up @@ -2,7 +2,7 @@
:description: How to download, configure and use it in a basic way.
include::revision.asciidoc[]
include::attributes.asciidoc[]
:pharstable: http://bartlett.laurent-laville.org/get/phpcompatinfo-4.4.0.phar
:pharstable: http://bartlett.laurent-laville.org/get/phpcompatinfo-4.5.0.phar


== Download
Expand All @@ -20,25 +20,25 @@ endif::basebackend-bootstrap[]
Make it executable, and put it into your `$PATH`.
[source,bash]
----
$ chmod +x phpcompatinfo-4.4.0.phar
$ mv phpcompatinfo-4.4.0.phar /usr/local/bin/phpcompatinfo
$ chmod +x phpcompatinfo-4.5.0.phar
$ mv phpcompatinfo-4.5.0.phar /usr/local/bin/phpcompatinfo
$ phpcompatinfo --version
----

You can also immediately use the PHAR after you have downloaded it.
[source,bash]
----
$ wget http://bartlett.laurent-laville.org/get/phpcompatinfo-4.4.0.phar
$ php phpcompatinfo-4.4.0.phar --version
$ wget http://bartlett.laurent-laville.org/get/phpcompatinfo-4.5.0.phar
$ php phpcompatinfo-4.5.0.phar --version
----

With both methods then you have this output :

[role="output"]
====
----
phpCompatInfo version 4.4.0 DB built Jul 11 2015 09:22:57 CEST
phpCompatInfo version 4.5.0 DB built Oct 05 2015 21:10:56 CEST
----
====

Expand Down
8 changes: 4 additions & 4 deletions docs/revision.asciidoc
@@ -1,6 +1,6 @@
:revdate: 2015-07-11
:revnumber: 4.4.0
:revdate: 2015-10-05
:revnumber: 4.5.0
:deprecated: 3.7.4
:deprecatedPubDate: April 15, 2015
:stable: 4.4.0
:stablePubDate: July 11, 2015
:stable: 4.5.0
:stablePubDate: October 5, 2015
2 changes: 1 addition & 1 deletion docs/user-guide--commands.asciidoc
Expand Up @@ -30,7 +30,7 @@ when you invoke the `phpcompatinfo` command, you should obtain the following com
| .__/|_| |_| .__/ \____\___/|_| |_| |_| .__/ \__,_|\__|___|_| |_|_| \___/
|_| |_| |_|
phpCompatInfo version 4.4.0 DB built Jul 11 2015 09:22:57 CEST
phpCompatInfo version 4.5.0 DB built Oct 05 2015 21:10:56 CEST
Usage:
[options] command [arguments]
Expand Down
14 changes: 7 additions & 7 deletions docs/user-guide--installation.asciidoc
Expand Up @@ -41,7 +41,7 @@ Put a file named [label label-default]#composer.json# at the root of your projec
----
{
"require": {
"bartlett/php-compatinfo": "4.4.0"
"bartlett/php-compatinfo": "4.5.0"
}
}
----
Expand All @@ -66,7 +66,7 @@ This is the equivalent of doing a git clone checkout followed by a composer inst
[source,bash]
----
$ php composer.phar create-project bartlett/php-compatinfo /path/to/install 4.4.0
$ php composer.phar create-project bartlett/php-compatinfo /path/to/install 4.5.0
----
Where +/path/to/install+ is your install directory.
====
Expand All @@ -79,17 +79,17 @@ bundled in a single file.

[source,bash]
----
$ wget http://bartlett.laurent-laville.org/get/phpcompatinfo-4.4.0.phar
$ chmod +x phpcompatinfo-4.4.0.phar
$ mv phpcompatinfo-4.4.0.phar /usr/local/bin/phpcompatinfo
$ wget http://bartlett.laurent-laville.org/get/phpcompatinfo-4.5.0.phar
$ chmod +x phpcompatinfo-4.5.0.phar
$ mv phpcompatinfo-4.5.0.phar /usr/local/bin/phpcompatinfo
$ phpcompatinfo
----

You can also immediately use the PHAR after you have downloaded it.
[source,bash]
----
$ wget http://bartlett.laurent-laville.org/get/phpcompatinfo-4.4.0.phar
$ php phpcompatinfo-4.4.0.phar
$ wget http://bartlett.laurent-laville.org/get/phpcompatinfo-4.5.0.phar
$ php phpcompatinfo-4.5.0.phar
----

ifdef::basebackend-bootstrap[]
Expand Down
1 change: 1 addition & 0 deletions docs/versions.html
@@ -1,4 +1,5 @@
<li><a tabindex="-1" href="../../current/en/index.html">current</a></li>
<li><a tabindex="-1" href="../../4.5/en/index.html">4.5</a></li>
<li><a tabindex="-1" href="../../4.4/en/index.html">4.4</a></li>
<li><a tabindex="-1" href="../../4.3/en/index.html">4.3</a></li>
<li><a tabindex="-1" href="../../4.2/en/index.html">4.2</a></li>
Expand Down

0 comments on commit 09764a1

Please sign in to comment.