diff --git a/CHANGELOG.md b/CHANGELOG.md index 0850785433..bb1272b4ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. +## 1.23.3 + +([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.23.2...4b19bf0f87a9fe8766ea896ac22f8bcdc3f08064)) + +### Bugs fixed + +- Fix rename_file and delete_file to handle hidden files properly [#1073](https://github.com/jupyter-server/jupyter_server/pull/1073) ([@yacchin1205](https://github.com/yacchin1205)) + +### Contributors to this release + +([GitHub contributors page for this release](https://github.com/jupyter-server/jupyter_server/graphs/contributors?from=2022-11-14&to=2022-11-21&type=c)) + +[@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ablink1073+updated%3A2022-11-14..2022-11-21&type=Issues) | [@codecov](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov+updated%3A2022-11-14..2022-11-21&type=Issues) | [@codecov-commenter](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov-commenter+updated%3A2022-11-14..2022-11-21&type=Issues) | [@meeseeksmachine](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ameeseeksmachine+updated%3A2022-11-14..2022-11-21&type=Issues) | [@welcome](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Awelcome+updated%3A2022-11-14..2022-11-21&type=Issues) | [@Zsailer](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3AZsailer+updated%3A2022-11-14..2022-11-21&type=Issues) + + + ## 1.23.2 ([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.23.1...1eed592ce93d8863a243f38e327d4a433cfd4b76)) @@ -18,8 +34,6 @@ All notable changes to this project will be documented in this file. [@blink1073](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Ablink1073+updated%3A2022-11-09..2022-11-14&type=Issues) | [@codecov](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov+updated%3A2022-11-09..2022-11-14&type=Issues) | [@codecov-commenter](https://github.com/search?q=repo%3Ajupyter-server%2Fjupyter_server+involves%3Acodecov-commenter+updated%3A2022-11-09..2022-11-14&type=Issues) - - ## 1.23.1 ([Full Changelog](https://github.com/jupyter-server/jupyter_server/compare/v1.23.0...0d8a17939615eafe7a38fb417b7559f4ec6ccf03)) diff --git a/docs/source/conf.py b/docs/source/conf.py index fbcf0e834e..1f17d6c65d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -107,7 +107,7 @@ # |version| and |release|, also used in various other places throughout the # built documents. # -__version__ = "1.24.0.dev0" +__version__ = "1.23.3" # The short X.Y version. version_parsed = parse_version(__version__) version = f"{version_parsed.major}.{version_parsed.minor}" diff --git a/jupyter_server/_version.py b/jupyter_server/_version.py index da555b140b..443c1ff297 100644 --- a/jupyter_server/_version.py +++ b/jupyter_server/_version.py @@ -2,5 +2,5 @@ store the current version info of the server. """ -version_info = (1, 24, 0, ".dev", "0") +version_info = (1, 23, 3, "", "") __version__ = ".".join(map(str, version_info[:3])) + "".join(version_info[3:]) diff --git a/pyproject.toml b/pyproject.toml index cdbc3165e3..02dc3e33d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,7 +35,7 @@ skip = ["check-links"] post-version-spec = "dev" [tool.tbump.version] -current = "1.24.0.dev0" +current = "1.23.3" regex = ''' (?P\d+)\.(?P\d+)\.(?P\d+) ((?Pa|b|rc|.dev)(?P\d+))?