diff --git a/CHANGELOG.md b/CHANGELOG.md index d5254e05..2cf37317 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ # Changelog All notable changes to this project will be documented in this file. +### [1.1.1] + +#### Fixed + +- Fix deprecated link for tutorials in `README.md` file. + ### [1.1.0] #### Added diff --git a/README.md b/README.md index 9056ca9e..ba944fb9 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@

Docs • - Tutorials • + TutorialsConfigurations

diff --git a/pyproject.toml b/pyproject.toml index bcff07ab..6186f14b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "quadra" -version = "1.1.0" +version = "1.1.1" description = "Deep Learning experiment orchestration library" authors = [ {name = "Alessandro Polidori", email = "alessandro.polidori@orobix.com"}, @@ -117,7 +117,7 @@ repository = "https://github.com/orobix/quadra" # Adapted from https://realpython.com/pypi-publish-python-package/#version-your-package [tool.bumpver] -current_version = "1.1.0" +current_version = "1.1.1" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "build: Bump version {old_version} -> {new_version}" commit = true diff --git a/quadra/__init__.py b/quadra/__init__.py index 0f5fca3e..689f56c0 100644 --- a/quadra/__init__.py +++ b/quadra/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.1.0" +__version__ = "1.1.1" def get_version():