From f9f318180f2e25ef60d5144f7cd9b9f355771cf7 Mon Sep 17 00:00:00 2001 From: Louis Bouchard Date: Fri, 12 May 2023 09:24:58 +0200 Subject: [PATCH] feat: add nl-ams-3 --- CHANGES.rst | 5 +++++ scaleway/apis/__init__.py | 2 +- scaleway/apis/api_compute.py | 3 +++ setup.cfg | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 9f0983a..633c6cd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ ChangeLog ========= +`1.15.0 (2023-05-12) `_ +-------------------------------------------------------------------------------------------- + +* Add nl-ams-3 AZ + `1.14.0 (2022-11-02) `_ -------------------------------------------------------------------------------------------- diff --git a/scaleway/apis/__init__.py b/scaleway/apis/__init__.py index 80ef100..57f8a95 100644 --- a/scaleway/apis/__init__.py +++ b/scaleway/apis/__init__.py @@ -18,7 +18,7 @@ import requests import slumber -__version__ = '1.14.0' +__version__ = '1.15.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 7c6989b..216e314 100644 --- a/scaleway/apis/api_compute.py +++ b/scaleway/apis/api_compute.py @@ -32,6 +32,9 @@ 'nl-ams-2': { 'url': 'https://api-nl-ams.scaleway.com/instance/v1/zones/nl-ams-2/', }, + 'nl-ams-3': { + 'url': 'https://api-nl-ams.scaleway.com/instance/v1/zones/nl-ams-3/', + }, 'pl-waw-1': { 'url': 'https://api-pl-waw.scaleway.com/instance/v1/zones/pl-waw-1/', }, diff --git a/setup.cfg b/setup.cfg index ffc4efe..8fb6dad 100644 --- a/setup.cfg +++ b/setup.cfg @@ -6,7 +6,7 @@ universal = 1 # https://github.com/peritus/bumpversion#configuration [bumpversion] -current_version = 1.14.0 +current_version = 1.15.0 files = ./scaleway/__init__.py ./CHANGES.rst allow_dirty = True commit = False