Skip to content

Commit

Permalink
release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
briancappello committed Dec 20, 2020
1 parent 15d5d72 commit 7730362
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## v0.8.0 (unreleased)
## v0.8.0 (2020/12/20)

### Features

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
# The short X.Y version
version = ''
# The full version, including alpha/beta/rc tags
release = 'v0.7.9'
release = 'v0.8.0'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion flask_unchained/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:license: MIT, see LICENSE for more details
"""

__version__ = '0.7.9'
__version__ = '0.8.0'

# must be first
from . import _compat
Expand Down
2 changes: 1 addition & 1 deletion flask_unchained/_code_templates/project/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#! flask-unchained[{{ ','.join(requirements) }}]>=0.7.9
#! flask-unchained[{{ ','.join(requirements) }}]>=0.8.0
jinja2-time>=0.2.0
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ filterwarnings =
ignore:Use .persist_selectable:sqlalchemy.exc.SADeprecationWarning

[bumpversion]
current_version = 0.7.9
current_version = 0.8.0
parse =
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) # major, minor and patch
(?:\-(?P<pre>(?:dev|alpha|beta|rc))\.(?P<prenum>\d+))? # pre-release
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='Flask-Unchained',
version='0.7.9',
version='0.8.0',
description='The quickest and easiest way to build large web apps and APIs with Flask and SQLAlchemy',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 7730362

Please sign in to comment.