Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Apr 23, 2023
1 parent 438dbb5 commit ffa3e28
Show file tree
Hide file tree
Showing 13 changed files with 78 additions and 20 deletions.
20 changes: 10 additions & 10 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.9.2
current_version = 1.1.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.?)(?P<release>[a-z]*)(?P<relver>\d*)
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
serialize =
{major}.{minor}.{patch}.{release}{relver}
{major}.{minor}.{patch}
commit = True
tag = True
sign_tags = True
Expand All @@ -12,11 +12,11 @@ message = Release {new_version}

[bumpversion:part:release]
optional_value = gamma
values =
dev
a
b
rc
gamma
values =
dev
a
b
rc
gamma

[bumpversion:file:taiga/__init__.py]
29 changes: 29 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,35 @@
History
*********

.. towncrier release notes start
1.1.0 (2023-04-23)
==================

Features
--------

- Update tooling, drop Python 2 (#59)
- Implement list_epic_attributes() (#103)
- Update packaging - python versions (#124)


Bugfixes
--------

- Update HistoryItem methods signatures (#97)
- Improve models documentation (#105)
- Add refresh token support to tests/resources/auth_users_success.json (#114)
- Fix pagination (#116)
- Update linting tools and fix code style (#117)


Improved Documentation
----------------------

- Improve documentation (#58)


1.0.0 (2019-08-08)
==================

Expand Down
1 change: 0 additions & 1 deletion changes/103.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/105.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/114.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/116.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/117.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changes/124.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/58.doc

This file was deleted.

1 change: 0 additions & 1 deletion changes/59.feature

This file was deleted.

1 change: 0 additions & 1 deletion changes/97.bugfix

This file was deleted.

38 changes: 38 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
python-taiga (1.1.0-1) UNRELEASED; urgency=low

* Update tooling, drop Python 2 (#59).
* Implement list_epic_attributes() (#103).
* Update packaging - python versions (#124).
* Update HistoryItem methods signatures (#97).
* Improve models documentation (#105).
* Add refresh token support to tests/resources/auth_users_success.json (#114)l
* Fix pagination (#116).
* Update linting tools and fix code style (#117).
* Improve documentation (#58).

--Iacopo Spalletti <i.spalletti@nephila.digital> Sun, 23 Apr 2023 23:21:18 +0200

python-taiga (1.0.0-1) UNRELEASED; urgency=low

* Add support for python 3.7
* Add support for epics
* Add support for additional attributes from Taiga 3.2/3.3
* Improve models
* Improve pagination support
* Fix and enforce code style

--Iacopo Spalletti <i.spalletti@nephila.digital> Thu, 08 Aug 2019 23:21:18 +0200

python-taiga (0.9.0-1) UNRELEASED; urgency=low

* Add support for multiple authentication backends.
* Add support for self-signed and not verified SSL certificates.
* Add support for webhooks.
* Add pagination support for lists.
* Add debian packaging.
* Avoid installing tests as a separate module.
* Move documentation to readthedocs.
* Add support for Python 3.5/3.6.

--Iacopo Spalletti <i.spalletti@nephila.digital> Wed, 31 Jan 2018 23:21:18 +0100

python-taiga (0.8.6-1) UNRELEASED; urgency=low

* Initial release.
Expand Down
2 changes: 1 addition & 1 deletion taiga/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""
Taiga Python API library
"""
__version__ = "1.0.0"
__version__ = "1.1.0"
__author__ = "Nephila"
__license__ = "MIT"
__all__ = ["TaigaAPI"]
Expand Down

0 comments on commit ffa3e28

Please sign in to comment.