diff --git a/CHANGELOG.md b/CHANGELOG.md index ec41bcbe..2980ed99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Release Notes +## v1.1.1 + +Hotfix for accidental package name change in `pyproject.toml`. + +The package name is now corrected to `pytorch-forecasting`. + + ## v1.1.0 Maintenance update widening compatibility ranges and consolidating dependencies: diff --git a/pyproject.toml b/pyproject.toml index a9973227..7bcb0096 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,9 +27,9 @@ isort = 1 black = 1 [project] -name = "pytorch_forecasting" +name = "pytorch-forecasting" readme = "README.md" # Markdown files are supported -version = "1.1.0" # is being replaced automatically +version = "1.1.1" # is being replaced automatically authors = [ {name = "Jan Beitner"}, diff --git a/pytorch_forecasting/__init__.py b/pytorch_forecasting/__init__.py index 05ef9575..693dce3c 100644 --- a/pytorch_forecasting/__init__.py +++ b/pytorch_forecasting/__init__.py @@ -112,4 +112,4 @@ "unpack_sequence", ] -__version__ = "1.1.0" +__version__ = "1.1.1"