diff --git a/CHANGES.rst b/CHANGES.rst index 562ca6d..9f0983a 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ ChangeLog ========= +`1.14.0 (2022-11-02) `_ +-------------------------------------------------------------------------------------------- + +* Add pl-waw-2 AZ + `1.13.1 (2022-02-02) `_ -------------------------------------------------------------------------------------------- diff --git a/scaleway/apis/__init__.py b/scaleway/apis/__init__.py index 0325c94..80ef100 100644 --- a/scaleway/apis/__init__.py +++ b/scaleway/apis/__init__.py @@ -18,7 +18,7 @@ import requests import slumber -__version__ = '1.13.1' +__version__ = '1.14.0' # To enable logging, the client application needs to configure the logging std diff --git a/scaleway/apis/api_compute.py b/scaleway/apis/api_compute.py index f93bf5f..7c6989b 100644 --- a/scaleway/apis/api_compute.py +++ b/scaleway/apis/api_compute.py @@ -34,6 +34,9 @@ }, 'pl-waw-1': { 'url': 'https://api-pl-waw.scaleway.com/instance/v1/zones/pl-waw-1/', + }, + 'pl-waw-2': { + 'url': 'https://api-pl-waw.scaleway.com/instance/v1/zones/pl-waw-2/', } } diff --git a/setup.cfg b/setup.cfg index 6b95e3d..ffc4efe 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ universal = 1 # https://github.com/peritus/bumpversion#configuration [bumpversion] -current_version = 1.13.1 +current_version = 1.14.0 files = ./scaleway/__init__.py ./CHANGES.rst allow_dirty = True commit = False