diff --git a/CHANGELOG b/CHANGELOG index 76da5b3c..85924caf 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -245,3 +245,7 @@ 1.0.5 09/12/2023 * Fix missing dependency on packaging (#590) * implement partial format description event fields (#585) + +1.0.6 09/01/2024 +* Optimizing version check to happen once per run (#597) +* bug-fix-nonesources f string (#596) \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 28cfd547..7563df9f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,9 +47,9 @@ # built documents. # # The short X.Y version. -version = "1.0.5" +version = "1.0.6" # The full version, including alpha/beta/rc tags. -release = "1.0.5" +release = "1.0.6" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index d44dcfbb..8623ee62 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def run(self): unittest.main(tests, argv=sys.argv[:1]) -version = "1.0.5" +version = "1.0.6" this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text()