-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Updated to 2.3.0 #2688
New issue
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
Updated to 2.3.0 #2688
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,11 +57,11 @@ Distribution: | |
|
||
.. code-block:: bash | ||
|
||
php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony 2.2.0 | ||
php composer.phar create-project symfony/framework-standard-edition /path/to/webroot/Symfony 2.3.0 | ||
|
||
.. tip:: | ||
|
||
For an exact version, replace `2.2.0` with the latest Symfony version | ||
For an exact version, replace `2.3.0` with the latest Symfony version | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. not your fault: but can you change the single backticks to double backticks? |
||
(e.g. 2.2.1). For details, see the `Symfony Installation Page`_ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. shouldn't 2.2.1 be replaced, too? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know. Should I write 2.3.1 (or something else)? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe just remove the complete There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not sure. 2.3.1 was a bit confusing as 2.3.0 already is the latest version. Maybe 2.3.0 is sufficient if we just use 2.3 in the install command. EDIT: didn't see WouterJ's reply when posting this. Probably omitting this completely really was the best solution. |
||
|
||
.. tip:: | ||
|
@@ -109,10 +109,10 @@ one of the following commands (replacing ``###`` with your actual filename): | |
.. code-block:: bash | ||
|
||
# for .tgz file | ||
$ tar zxvf Symfony_Standard_Vendors_2.2.###.tgz | ||
$ tar zxvf Symfony_Standard_Vendors_2.3.###.tgz | ||
|
||
# for a .zip file | ||
$ unzip Symfony_Standard_Vendors_2.2.###.zip | ||
$ unzip Symfony_Standard_Vendors_2.3.###.zip | ||
|
||
If you've downloaded "without vendors", you'll definitely need to read the | ||
next section. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -76,12 +76,12 @@ have a ``Symfony/`` directory that looks like this: | |
|
||
.. code-block:: bash | ||
|
||
$ composer.phar create-project symfony/framework-standard-edition path/to/install 2.2.0 | ||
$ composer.phar create-project symfony/framework-standard-edition path/to/install 2.3.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we think about giving 2.3 instead of 2.3.0? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 |
||
|
||
# remove the Git history | ||
$ rm -rf .git | ||
|
||
For an exact version, replace `2.2.0` with the latest Symfony version | ||
For an exact version, replace `2.3.0` with the latest Symfony version | ||
(e.g. 2.1.1). For details, see the `Symfony Installation Page`_ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same here? |
||
|
||
.. tip:: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we think about giving 2.3 instead of 2.3.0?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well, using
2.3
is strictly equivalent to2.3.0
(composer normalizes all versions to 4 segments internally so both are considered as2.3.0.0
).But you could use
2.3.*
to install the latest 2.3 release (the--stability
option defaults tostable
) ascreate-project
accepts any version constraint, not only exact match.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the hint, stof. I thought 2.3 would already install the latest versions. So 2.3.* is what I intended to suggest.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If I replace
2.3.0
by2.3
, should I change the line 84:For an exact version, replace 2.3.0 with the latest Symfony version.
by2.3
too ?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, but replace it with
2.3.*
as @stof suggestedThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@stof are you sure
2.3.*
works? I get "[UnexpectedValueException] Invalid version string "2.2.*""There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same for me, but I get
Invalid version string "2.3.*"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ah, sorry, it is indeed not accepting version constraints