diff --git a/AUTHORS b/AUTHORS index 923e1eb..081aaaf 100644 --- a/AUTHORS +++ b/AUTHORS @@ -22,3 +22,4 @@ Christoph Meißner Maxence Adnot Robin Gustafsson Daniel Federschmidt +Robert Dyer diff --git a/HISTORY.rst b/HISTORY.rst index a019c58..da22ad6 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,25 @@ History .. towncrier release notes start +1.3.0 (2024-01-02) +================== + +Features +-------- + +- Switch to bump-my-version (#140) +- Switch to Coveralls Github action (#155) +- Add a duplicate() method to Project. (#161) +- Adds SwimLane/SwimLanes models and support to add/list in Project. (#162) +- Adds the ability to read/write the default_swimlane attribute in Project. (#166) + + +Bugfixes +-------- + +- Add the version parameter to the alloed parameter so the requester can acess it. (#149) + + 1.2.0 (2023-08-23) ================== diff --git a/changes/140.feature b/changes/140.feature deleted file mode 100644 index 7c21d74..0000000 --- a/changes/140.feature +++ /dev/null @@ -1 +0,0 @@ -Switch to bump-my-version diff --git a/changes/149.bugfix b/changes/149.bugfix deleted file mode 100644 index 30fabce..0000000 --- a/changes/149.bugfix +++ /dev/null @@ -1 +0,0 @@ -add the version parameter to the alloed parameter so the requester can acess it. diff --git a/changes/155.feature b/changes/155.feature deleted file mode 100644 index ac23805..0000000 --- a/changes/155.feature +++ /dev/null @@ -1 +0,0 @@ -Switch to Coveralls Github action diff --git a/changes/161.feature b/changes/161.feature deleted file mode 100644 index 2c0df3b..0000000 --- a/changes/161.feature +++ /dev/null @@ -1 +0,0 @@ -Add a duplicate() method to Project. diff --git a/changes/162.feature b/changes/162.feature deleted file mode 100644 index f1f38ac..0000000 --- a/changes/162.feature +++ /dev/null @@ -1 +0,0 @@ -Adds SwimLane/SwimLanes models and support to add/list in Project. diff --git a/changes/166.feature b/changes/166.feature deleted file mode 100644 index ac841b1..0000000 --- a/changes/166.feature +++ /dev/null @@ -1 +0,0 @@ -Adds the ability to read/write the default_swimlane attribute in Project. diff --git a/pyproject.toml b/pyproject.toml index 38fb540..6447e83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -53,7 +53,7 @@ commit = true message = "Release {new_version}" commit_args = "--no-verify" tag = false -current_version = "1.2.0" +current_version = "1.3.0" parse = """(?x) (?P[0-9]+) \\.(?P[0-9]+) diff --git a/taiga/__init__.py b/taiga/__init__.py index dcf70b2..d4a7f93 100644 --- a/taiga/__init__.py +++ b/taiga/__init__.py @@ -5,7 +5,7 @@ """ Taiga Python API library """ -__version__ = "1.2.0" +__version__ = "1.3.0" __author__ = "Nephila" __license__ = "MIT" __all__ = ["TaigaAPI"]