From c0355a539d35a2f23cfa44540ff7f2bf2e9db6fa Mon Sep 17 00:00:00 2001 From: Yannik Marchand Date: Sun, 12 Nov 2023 22:46:33 +0100 Subject: [PATCH] Release 2.0.1 --- docs/changelog.md | 5 +++++ setup.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 27106ae1..376b6b3c 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,11 @@ ## Changelog +### 2.0.1 +* **Bug fix**: added `nintendo.switch` to setup.py. The whole `nintendo.switch` folder was missing in the previous release. + +*Released on 2023-11-12* + ### 2.0.0 * **Breaking change:** moved all Switch-related clients into their own namespace. For example, `nintendo.dauth` is now `nintendo.switch.dauth`. * **Breaking change:** dauth client ids are now global constants instead of members of `DAuthClient`. diff --git a/setup.py b/setup.py index 22fe7bcf..6e7c19dc 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setuptools.setup( name = "nintendoclients", - version = "2.0.0", + version = "2.0.1", description = "Nintendo network library", long_description = long_description, author = "Yannik Marchand",