Skip to content

Commit aaff656

Browse files
authored
chore: bump version to 0.6.0 (#51)
Bump version to 0.6.0 and add missing `CHANGELOG.md` entry about new Python 3.10 support.
1 parent 2994ec7 commit aaff656

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ All notable changes in **python-transip** are documented below.
33

44
## [Unreleased]
55

6+
## [0.6.0] (2021-11-01)
7+
### Added
8+
- Python 3.10 support ([#49](https://github.com/roaldnefs/python-transip/pull/49)).
9+
610
## [0.5.0] (2021-02-10)
711
### Added
812
- The option to replace all existing nameservers of a single domain at once from the `transip.v6.objects.Domain.nameservers` service.
@@ -21,6 +25,7 @@ All notable changes in **python-transip** are documented below.
2125
- The option to update the content of a single DNS record from the `transip.v6.objects.Domain.dns` service, as well as from the `transip.v6.objects.DnsEntry` object.
2226
- The option to replace all existing DNS records of a single domain at once from the `transip.v6.objects.Domain.dns` service.
2327

24-
[Unreleased]: https://github.com/roaldnefs/python-transip/compare/v0.5.0...HEAD
28+
[Unreleased]: https://github.com/roaldnefs/python-transip/compare/v0.6.0...HEAD
29+
[0.6.0]: https://github.com/roaldnefs/python-transip/compare/v0.5.0...v0.6.0
2530
[0.5.0]: https://github.com/roaldnefs/python-transip/compare/v0.4.0...v0.5.0
2631
[0.4.0]: https://github.com/roaldnefs/python-transip/compare/v0.3.0...v0.4.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def get_long_description() -> str:
4444
python_requires=">=3.6",
4545
entry_points={},
4646
classifiers=[
47-
"Development Status :: 1 - Planning",
47+
"Development Status :: 5 - Production/Stable",
4848
"Intended Audience :: Developers",
4949
"Intended Audience :: System Administrators",
5050
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",

transip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131

3232
__title__ = "python-transip"
33-
__version__ = "0.5.0"
33+
__version__ = "0.6.0"
3434
__author__ = "Roald Nefs"
3535
__email__ = "[email protected]"
3636
__copyright__ = "Copyright 2020-2021, Roald Nefs"

0 commit comments

Comments
 (0)