Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
Expand All @@ -9,16 +10,15 @@ version: 2
sphinx:
configuration: docs/conf.py

# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml

# Optionally build your docs in additional formats such as PDF
formats:
- pdf

# Optionally set the version of Python and requirements required to build your docs
# Optionally set the version of Python and requirements required to build your
# docs
python:
version: 3.7
install:
- requirements: docs/requirements.txt
- method: pip
path: .
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
All notable changes in **python-transip** are documented below.

## [Unreleased]

## [0.4.0] (2021-01-24)
### Added
- This `CHANGELOG.md` file to be able to list all notable changes for each version of **python-transip**.
- The `transip.TransIP.api_test` service to allow calling the test resource to make sure everything is working.
Expand All @@ -12,4 +14,5 @@ All notable changes in **python-transip** are documented below.
- 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.
- The option to replace all existing DNS records of a single domain at once from the `transip.v6.objects.Domain.dns` service.

[Unreleased]: https://github.com/roaldnefs/python-transip/compare/v0.3.0...HEAD
[Unreleased]: https://github.com/roaldnefs/python-transip/compare/v0.4.0...HEAD
[0.4.0]: https://github.com/roaldnefs/python-transip/compare/v0.3.0...v0.4.0
2 changes: 1 addition & 1 deletion transip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@


__title__ = "python-transip"
__version__ = "0.3.0"
__version__ = "0.4.0"
__author__ = "Roald Nefs"
__email__ = "info@roaldnefs.com"
__copyright__ = "Copyright 2020-2021, Roald Nefs"
Expand Down