Merge branch 'release/3.4.8' into develop

This commit is contained in:
Roman Mogilatov 2017-06-09 01:51:19 +03:00
commit 770f867ca2
3 changed files with 11 additions and 3 deletions

View File

@ -58,8 +58,12 @@ check:
pydocstyle examples/ pydocstyle examples/
publish: cythonize publish: cythonize
# Create and upload build # Merge release to master branch
python setup.py sdist upload git checkout master
git merge --no-ff release/$(VERSION) -m 'Merge branch release/$(VERSION)'
git push origin master
# Create and upload tag # Create and upload tag
git tag -a $(VERSION) -m 'version $(VERSION)' git tag -a $(VERSION) -m 'version $(VERSION)'
git push --tags git push --tags
# Create and upload build
python setup.py sdist upload

View File

@ -9,6 +9,10 @@ follows `Semantic versioning`_
Development version Development version
------------------- -------------------
- No features.
3.4.8
-----
- Code style fixes in ``providers`` module. - Code style fixes in ``providers`` module.
3.4.7 3.4.7

View File

@ -1,6 +1,6 @@
"""Dependency injector top-level package.""" """Dependency injector top-level package."""
__version__ = '3.4.7' __version__ = '3.4.8'
"""Version number that follows semantic versioning. """Version number that follows semantic versioning.
:type: str :type: str