Skip to content

Commit

Permalink
Adding Changelog, incrementing App::VERSION
Browse files Browse the repository at this point in the history
Signed-off-by: RJ Garcia <rj@bighead.net>
  • Loading branch information
ragboyjr committed Jan 6, 2017
1 parent 24e3ddd commit d166b5a
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 1 deletion.
73 changes: 73 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# Change Log

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

### Added

- This CHANGELOG

## [0.2.4] - 2016-12-05

### Changed

- Fixed REST parseJson Bug
- Updated responseFactory to be a parameter not a service

### Added

- test for 415 parse json error
- more documentation
- a few more services to the REST package for convenience


## [0.2.3] - 2016-12-05

### Added

- Mountable Middleware \#5
- Redirect Marshal Response Matching \#3

## [0.2.2] - 2016-12-04

Several minor changes to the system.

### Changed

- Adding server to app service dependencies
- Documentation updates and Std package update

## [0.2.1] - 2016-11-30

### Fixed

- Hotfix for fixing package.php inclusion

## [0.2.0] - 2016-11-28

### Added

- Added Evenement event listener integration to the App
- Added Pimple integration into the core. Refactored how
the app works entirely
- AutoArgs Package - allows for symfony style action parameters
- Initial Documentation and Package Refactoring

## Changed

- Fixed bug with config defaults

### [0.1.0] - 2016-11-23

Initial Release

### Added

- Packages
- Server
- Basic Routing
- HttpApp
2 changes: 1 addition & 1 deletion src/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class App implements \ArrayAccess, EventEmitterInterface
{
use RouteMatch;

const VERSION = '0.2.4';
const VERSION = '0.2.5-dev';

private $container;
private $frozen;
Expand Down

0 comments on commit d166b5a

Please sign in to comment.