Skip to content
This repository has been archived by the owner on Dec 26, 2021. It is now read-only.

Commit

Permalink
prepare release 3.0 RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Mar 3, 2015
1 parent fd14dc0 commit e248bf4
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 22 deletions.
1 change: 0 additions & 1 deletion .gitignore
@@ -1,5 +1,4 @@
Thumbs.db
*.tgz
vendor/
*.plantuml
phpunit.xml
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/phpreflect-3.0.0-beta3.phar
:pharstable: http://bartlett.laurent-laville.org/get/phpreflect-3.0.0-RC1.phar


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

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

With both methods then you have this output :

[role="output"]
====
----
phpReflect version 3.0.0-beta3
phpReflect version 3.0.0-RC1
----
====

Expand Down
10 changes: 5 additions & 5 deletions docs/index.asciidoc
Expand Up @@ -5,8 +5,8 @@ include::revision.asciidoc[]
include::attributes.asciidoc[]
:stable: 2.6.2
:stablePubDate: January 5, 2015
:dev: 3.0.0-beta3
:devPubDate: February 26, 2015
:dev: 3.0.0-RC1
:devPubDate: Marth 3, 2015
:toc!:
:toc2!:
:navbar!:
Expand All @@ -25,7 +25,7 @@ include::attributes.asciidoc[]
It was published on {stablePubDate}.
ifdef::basebackend-bootstrap[]
link:./manual/current/en/getting-started.html["Learn more",role="primary",options="block"]
link:./manual/current/en/getting-started.html["Learn more",role="primary",icon="glyphicon-book",options="block"]
endif::[]
ifndef::basebackend-bootstrap[]
Expand All @@ -44,7 +44,7 @@ endif::[]
It was published on {devPubDate}.
ifdef::basebackend-bootstrap[]
link:./manual/3.0/en/getting-started.html["Learn more",role="primary",options="block"]
link:./manual/3.0/en/getting-started.html["Learn more",role="primary",icon="glyphicon-book",options="block"]
endif::[]
ifndef::basebackend-bootstrap[]
Expand Down Expand Up @@ -133,7 +133,7 @@ unfloat::[]
{brand} is open source. It's hosted, developed, and maintained on GitHub.

ifdef::basebackend-bootstrap[]
link:{gitproject}["View the GitHub Project",role="primary",options="block"]
link:{gitproject}["View the GitHub Project",role="primary",icon="glyphicon-eye-open",options="block"]
endif::[]

ifndef::basebackend-bootstrap[]
Expand Down
4 changes: 2 additions & 2 deletions docs/revision.asciidoc
@@ -1,2 +1,2 @@
:revdate: 2015-02-26
:revnumber: 3.0.0-beta3
:revdate: 2015-03-03
:revnumber: 3.0.0-RC1
2 changes: 1 addition & 1 deletion docs/user-guide--commands.asciidoc
Expand Up @@ -29,7 +29,7 @@ when you invoke the `phpreflect` command, you should obtain the following comman
| .__/|_| |_| .__/|_| \_\___|_| |_|\___|\___|\__|
|_| |_|
phpReflect version 3.0.0-beta3
phpReflect version 3.0.0-RC1
Usage:
[options] command [arguments]
Expand Down
14 changes: 7 additions & 7 deletions docs/user-guide--installation.asciidoc
Expand Up @@ -43,7 +43,7 @@ Put a file named [label label-default]#composer.json# at the root of your projec
----
{
"require": {
"bartlett/php-reflect": "3.0.0-beta3"
"bartlett/php-reflect": "3.0.0-RC1"
}
}
----
Expand All @@ -68,7 +68,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-reflect /path/to/install 3.0.0-beta3
$ php composer.phar create-project bartlett/php-reflect /path/to/install 3.0.0-RC1
----
Where +/path/to/install+ is your install directory.
====
Expand All @@ -81,17 +81,17 @@ bundled in a single file.

[source,bash]
----
$ wget http://bartlett.laurent-laville.org/get/phpreflect-3.0.0-beta3.phar
$ chmod +x phpreflect-3.0.0-beta3.phar
$ mv phpreflect-3.0.0-beta3.phar /usr/local/bin/phpreflect
$ wget http://bartlett.laurent-laville.org/get/phpreflect-3.0.0-RC1.phar
$ chmod +x phpreflect-3.0.0-RC1.phar
$ mv phpreflect-3.0.0-RC1.phar /usr/local/bin/phpreflect
$ phpreflect
----

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

ifdef::basebackend-bootstrap[]
Expand Down

0 comments on commit e248bf4

Please sign in to comment.