Skip to content

Commit

Permalink
Merge pull request #227 from fyntex/release/v0.12.5
Browse files Browse the repository at this point in the history
Release v0.12.5
  • Loading branch information
jtrobles-cdd committed Jun 16, 2021
2 parents 1e2aefb + 7fb5409 commit a9eca10
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.12.4
current_version = 0.12.5
commit = True
tag = True

Expand Down
10 changes: 10 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
History
-------

0.12.5 (2021-06-15)
+++++++++++++++++++++++

* (PR #226, 2021-06-15) requirements: Remove Django upper bound constraint
* (PR #224, 2021-06-15) requirements: Upgrade 'Django'
* (PR #223, 2021-06-08) requirements: Upgrade 'Django'
* (PR #221, 2021-05-14) requirements: Upgrade Pydantic
* (PR #216, 2021-04-22) docs: Add creation of release branch to instructions for new releases
* (PR #213, 2021-04-21) build(deps): bump toml from 0.10.1 to 0.10.2

0.12.4 (2021-04-15)
+++++++++++++++++++++++

Expand Down
2 changes: 1 addition & 1 deletion cl_sii/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"""


__version__ = '0.12.4'
__version__ = '0.12.5'
10 changes: 10 additions & 0 deletions docs/project-maintenance.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ Push commit ``abcd1234`` and tag ``vX.Y.Z`` automatically created by ``bumpversi
git push
git push --tags

Create branch ``release/vX.Y.Z`` that points to tag ``vX.Y.Z`` and push it::

git checkout vX.Y.Z
git checkout -b release/vX.Y.Z
git push origin HEAD

3) Create pull request and new release
+++++++++++++++++++

Expand All @@ -61,6 +67,10 @@ Push commit ``abcd1234`` and tag ``vX.Y.Z`` automatically created by ``bumpversi
* Create PR for
`master...develop <https://github.com/fyntex/lib-cl-sii-python/compare/master...develop>`_.

* Base branch: ``master``.

* Head branch: ``release/vX.Y.Z`` (instead of ``develop``).

* Name: "Release".

* Labels: ``kind: release``.
Expand Down
2 changes: 1 addition & 1 deletion requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defusedxml==0.6.0
jsonschema==3.2.0
lxml==4.6.3
marshmallow==2.19.5
pydantic==1.6.1
pydantic==1.6.2
pyOpenSSL==18.0.0
pytz==2019.3
signxml==2.8.1
Expand Down
2 changes: 1 addition & 1 deletion requirements/extras.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# note: it is NOT mandatory to register all dependencies of the required packages.

# Required packages:
Django>=2.2.18,<3
Django>=2.2.24
djangorestframework>=3.10.3,<3.13

# Packages dependencies:
Expand Down
2 changes: 1 addition & 1 deletion requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ pyflakes==2.2.0
# pyparsing
# requests
# six
toml==0.10.1
toml==0.10.2
typed-ast==1.4.2
typing-extensions==3.7.4.3
# urllib3
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ def get_version(*file_paths: Sequence[str]) -> str:
'jsonschema>=3.1.1',
'lxml>=4.5.0,<5',
'marshmallow>=2.19.2,<3',
'pydantic>=1.6.1',
'pydantic>=1.6.2',
# TODO: remove upper-bound after a new release of 'signxml' drops the requirement 'pyOpenSSL<20'
'pyOpenSSL>=18.0.0,<20',
'pytz>=2019.3',
'signxml>=2.8.0',
]

extras_requirements = {
'django': ['Django>=2.2.18,<3'],
'django': ['Django>=2.2.24'],
'djangorestframework': ['djangorestframework>=3.10.3,<3.13'],
}

Expand Down

0 comments on commit a9eca10

Please sign in to comment.