Skip to content

Commit

Permalink
update changelog and upgrade doc
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Apr 27, 2016
1 parent c75c2ba commit 626c895
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

### 2.0.0-RC1

* Split the framework into components
* Removed command system

### 1.2.3 (2016-02-17)

* Added version handling to annotation and raml parser
Expand Down
13 changes: 7 additions & 6 deletions UPGRADE-2.0.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@

# Upgrade from 1.x to 2.0
# Upgrade from 1.x to 2.x

With the 2.x release we moved from a monolithic library to a component based.
With the 2.x release we moved from a monolithic library to multiple components.
That means we have split up the framework into components which can also be used
independent of the framework.
independent of the framework. The following list contains all important class
changes.

* The `RecordInterface` type hint and `Version` parameter from the
`SchemaApiAbstract::do*` methods was removed i.e.:
`SchemaApiAbstract::do*` methods were removed i.e.:
__Before:__
`protected function doPost(RecordInterface $record, Version $version)`
__After:__
Expand Down Expand Up @@ -38,7 +39,7 @@ independent of the framework.
__After:__
`public function getDocumentation($version = null)`

* DI container service changes:
* DI container service changes:
* `http` => `http_client`
* `io` => (added)
* `api_parser` => (added)
Expand All @@ -57,7 +58,7 @@ independent of the framework.
* `extractor` => (removed)
* `serializer` => (removed)

* The following list contains common classes:
* The following list contains common classes which have changed:
* `PSX\Base` => `PSX\Framework\Base`
* `PSX\Cache` => `PSX\Cache\Pool`
* `PSX\Config` => `PSX\Framework\Config\Config`
Expand Down

0 comments on commit 626c895

Please sign in to comment.