mirror of
https://github.com/ets-labs/python-dependency-injector.git
synced 2025-02-07 07:00:49 +03:00
Merge branch 'release/3.4.8' into develop
This commit is contained in:
commit
770f867ca2
8
Makefile
8
Makefile
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user