Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
9
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
minty-python
minty-infra-amqp
Compare Revisions
v0.2.0...v0.3.0
Commits (2)
Update minimum minty requirement to 1.2.0
· 66526803
Martijn van de Streek
authored
Aug 09, 2019
66526803
"Tagged new version, from 0.2.0 to 0.3.0"
· 7b7bd6fd
Martijn van de Streek
authored
Aug 09, 2019
7b7bd6fd
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
6 deletions
+6
-6
docs/conf.py
docs/conf.py
+2
-2
minty_infra_amqp/__init__.py
minty_infra_amqp/__init__.py
+1
-1
requirements/base.txt
requirements/base.txt
+1
-1
setup.cfg
setup.cfg
+1
-1
setup.py
setup.py
+1
-1
No files found.
docs/conf.py
View file @
7b7bd6fd
...
...
@@ -61,9 +61,9 @@ author = "Minty_infra_amqp Team"
# built documents.
#
# The short X.Y version.
version
=
"0.
2
.0"
version
=
"0.
3
.0"
# The full version, including alpha/beta/rc tags.
release
=
"0.
2
.0"
release
=
"0.
3
.0"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
minty_infra_amqp/__init__.py
View file @
7b7bd6fd
__version__
=
"0.
2
.0"
__version__
=
"0.
3
.0"
import
threading
...
...
requirements/base.txt
View file @
7b7bd6fd
...
...
@@ -12,7 +12,7 @@ sphinx-autodoc-typehints
bumpversion
## Framework
minty~=1.
1
.0
minty~=1.
2
.0
## Project specific requirements
...
...
setup.cfg
View file @
7b7bd6fd
[bumpversion]
current_version = 0.
2
.0
current_version = 0.
3
.0
commit = True
tag = True
message = "Tagged new version, from {current_version} to {new_version}"
...
...
setup.py
View file @
7b7bd6fd
...
...
@@ -47,6 +47,6 @@ setup(
test_suite
=
"tests"
,
tests_require
=
test_requirements
,
url
=
"https://gitlab.com/minty-python/minty-infra-amqp"
,
version
=
"0.
2
.0"
,
version
=
"0.
3
.0"
,
zip_safe
=
False
,
)