diff options
author | github-actions <action@github.com> | 2021-07-28 00:15:47 +0000 |
---|---|---|
committer | github-actions <action@github.com> | 2021-07-28 00:15:47 +0000 |
commit | cec99d0d0d1892a7d124d81fd5da4234e61c180b (patch) | |
tree | b4f770c96e6a4e37e342b266a8d8a8aa1c7c84a5 | |
parent | edf49a3d855b1ce4e2bd8a7038b7444ff0ab5fdc (diff) | |
download | gitlab-cec99d0d0d1892a7d124d81fd5da4234e61c180b.tar.gz |
chore: release v2.10.0v2.10.0
-rw-r--r-- | CHANGELOG.md | 13 | ||||
-rw-r--r-- | gitlab/__version__.py | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a1b1784..7056f4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ <!--next-version-placeholder--> +## v2.10.0 (2021-07-28) +### Feature +* **api:** Add merge_ref for merge requests ([`1e24ab2`](https://github.com/python-gitlab/python-gitlab/commit/1e24ab247cc783ae240e94f6cb379fef1e743a52)) +* **api:** Add `name_regex_keep` attribute in `delete_in_bulk()` ([`e49ff3f`](https://github.com/python-gitlab/python-gitlab/commit/e49ff3f868cbab7ff81115f458840b5f6d27d96c)) + +### Fix +* **api:** Do not require Release name for creation ([`98cd03b`](https://github.com/python-gitlab/python-gitlab/commit/98cd03b7a3085356b5f0f4fcdb7dc729b682f481)) + +### Documentation +* **readme:** Move contributing docs to CONTRIBUTING.rst ([`edf49a3`](https://github.com/python-gitlab/python-gitlab/commit/edf49a3d855b1ce4e2bd8a7038b7444ff0ab5fdc)) +* Add example for mr.merge_ref ([`b30b8ac`](https://github.com/python-gitlab/python-gitlab/commit/b30b8ac27d98ed0a45a13775645d77b76e828f95)) +* **project:** Add example on getting a single project using name with namespace ([`ef16a97`](https://github.com/python-gitlab/python-gitlab/commit/ef16a979031a77155907f4160e4f5e159d839737)) + ## v2.9.0 (2021-06-28) ### Feature * **release:** Allow to update release ([`b4c4787`](https://github.com/python-gitlab/python-gitlab/commit/b4c4787af54d9db6c1f9e61154be5db9d46de3dd)) diff --git a/gitlab/__version__.py b/gitlab/__version__.py index 956f74f..2e8a93f 100644 --- a/gitlab/__version__.py +++ b/gitlab/__version__.py @@ -3,4 +3,4 @@ __copyright__ = "Copyright 2013-2019 Gauvain Pocentek, 2019-2021 python-gitlab t __email__ = "gauvainpocentek@gmail.com" __license__ = "LGPL3" __title__ = "python-gitlab" -__version__ = "2.9.0" +__version__ = "2.10.0" |