Skip to content

Commit

Permalink
Updating changelog for 2.8.0. Updating composer.json for subtree splits.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtdowling committed Jul 16, 2012
1 parent 0805340 commit 86bb222
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,19 @@
CHANGELOG
=========

* 2.8.0 (07-15-2012)

* BC: Guzzle\Http\Query
* Query strings with empty variables will always show an equal sign unless the variable is set to QueryString::BLANK (e.g. ?acl= vs ?acl)
* Changed isEncodingValues() and isEncodingFields() to isUrlEncoding()
* Changed setEncodeValues(bool) and setEncodeFields(bool) to useUrlEncoding(bool)
* Changed the aggregation functions of QueryString to be static methods
* Can now use fromString() with querystrings that have a leading ?
* cURL configuration values can be specified in service descriptions using ``curl.`` prefixed parameters
* Content-Length is set to 0 before emitting the request.before_send event when sending an empty request body
* Cookies are no longer URL decoded by default
* Bug: URI template variables set to null are no longer expanded

* 2.7.2 (07-02-2012)

* BC: Moving things to get ready for subtree splits. Moving Inflection into Common. Moving Guzzle\Http\Parser to Guzzle\Parser.
Expand Down
2 changes: 1 addition & 1 deletion src/Guzzle/Common/Version.php
Expand Up @@ -7,5 +7,5 @@
*/
class Version
{
const VERSION = '2.7.1';
const VERSION = '2.8.0';
}
2 changes: 1 addition & 1 deletion src/Guzzle/Common/composer.json
Expand Up @@ -6,7 +6,7 @@
"license": "MIT",
"require": {
"php": ">=5.3.2",
"symfony/event-dispatcher": "2.*"
"symfony/event-dispatcher": "2.1.0-beta2"
},
"autoload": {
"psr-0": { "Guzzle\\Common": "" }
Expand Down
6 changes: 3 additions & 3 deletions src/Guzzle/Http/composer.json
Expand Up @@ -6,9 +6,9 @@
"license": "MIT",
"require": {
"php": ">=5.3.2",
"guzzle/common": "*",
"guzzle/parser": "*",
"symfony/event-dispatcher": "2.*"
"guzzle/common": "self.version",
"guzzle/parser": "self.version",
"symfony/event-dispatcher": "2.1.0-beta2"
},
"autoload": {
"psr-0": { "Guzzle\\Http": "" }
Expand Down

0 comments on commit 86bb222

Please sign in to comment.