Skip to content

Commit

Permalink
Bumps version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Oct 6, 2016
1 parent a995232 commit f792d41
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 10 deletions.
27 changes: 20 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
### 0.1.1
# Change Log

(November 28th, 2015)
## [0.2.0] - 2016-10-06

##### Fixes
### Changed

- Changes internals to be compatible with the latest Orator version.
- Automatically returns a 404 error when `ModelNotFound` is raised.
- Adds support for directly returning Orator objects.


## [0.1.1] - 2015-11-28

### Fixed

- `Orator` class no longer inherits from `DatabaseManager` to avoid errors when setting up teardown context.

##### Improvements
### Changed

- Automatically disconnects after a request.


### 0.1
## [0.1] - 2015-07-07

Initial release


(July 7th, 2015)

- Initial release
[0.2.0]: https://github.com/sdispater/flask-orator/releases/tag/0.2.0
[0.1.1]: https://github.com/sdispater/flask-orator/releases/tag/0.1.1
[0.1]: https://github.com/sdispater/flask-orator/releases/tag/0.1
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.1.1'
release = '0.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion flask_orator/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# -*- coding: utf-8 -*-

VERSION = '0.1.1'
VERSION = '0.2.0'

0 comments on commit f792d41

Please sign in to comment.