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 1eb3b44
Show file tree
Hide file tree
Showing 12 changed files with 40 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.

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 1eb3b44

Please sign in to comment.