Skip to content

Commit d57b0bb

Browse files
authored
Release 1.2.0 (#1714)
Release PR for 1.2.0 * version number bump * changelog Fixes #1707 as this contains the `numpy 2` patch.
1 parent 3ff4ba7 commit d57b0bb

File tree

3 files changed

+59
-2
lines changed

3 files changed

+59
-2
lines changed

CHANGELOG.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,62 @@
11
# Release Notes
22

3+
## v1.2.0
4+
5+
Maintenance update, minor feature additions and bugfixes.
6+
7+
* support for `numpy 2.X`
8+
* end of life for `python 3.8`
9+
* fixed documentation build
10+
* bugfixes
11+
12+
### Dependency changes
13+
14+
* `pytorch-forecasting` is now compatible with `numpy 2.X` (core dependency)
15+
* `optuna` (tuning soft dependency) bounds have been update to `>=3.1.0,<5.0.0`
16+
17+
### Fixes
18+
19+
* [BUG] fix `AttributeError: 'ExperimentWriter' object has no attribute 'add_figure'` by @ewth in https://github.com/sktime/pytorch-forecasting/pull/1694
20+
21+
### Documentation
22+
23+
* [DOC] typo fixes in changelog by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1660
24+
* [DOC] update URLs to `sktime` org by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1674
25+
26+
### Maintenance
27+
28+
* [MNT] handle `mps backend` for lower versions of pytorch and fix `mps` failure on `macOS-latest` runner by @fnhirwa in https://github.com/sktime/pytorch-forecasting/pull/1648
29+
* [MNT] updates the actions in the doc build CI by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1673
30+
* [MNT] fixes to `readthedocs.yml` by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1676
31+
* [MNT] updates references in CI and doc locations to `main` by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1677
32+
* [MNT] `show_versions` utility by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1688
33+
* [MNT] Relax `numpy` bound to `numpy<3.0.0` by @XinyuWuu in https://github.com/sktime/pytorch-forecasting/pull/1624
34+
* [MNT] fix `pre-commit` failures on `main` by @ewth in https://github.com/sktime/pytorch-forecasting/pull/1696
35+
* [MNT] Move linting to ruff by @airookie17 in https://github.com/sktime/pytorch-forecasting/pull/1692
36+
1693
37+
* [MNT] `ruff` linting - allow use of assert (S101) by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1701
38+
* [MNT] `ruff` - fix list related linting failures C416 and C419 by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1702
39+
* [MNT] Delete poetry.lock by @benHeid in https://github.com/sktime/pytorch-forecasting/pull/1704
40+
* [MNT] fix `black` doesn't have `extras` dependency by @fnhirwa in https://github.com/sktime/pytorch-forecasting/pull/1697
41+
* [MNT] Remove mutable objects from defaults by @eugenio-mercuriali in https://github.com/sktime/pytorch-forecasting/pull/1699
42+
* [MNT] remove docs build in ci for all pr by @yarnabrina in https://github.com/sktime/pytorch-forecasting/pull/1712
43+
* [MNT] EOL for python 3.8 by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1661
44+
* [MNT] remove `poetry.lock` by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1651
45+
* [MNT] update `pre-commit` requirement from `<4.0.0,>=3.2.0` to `>=3.2.0,<5.0.0` by @dependabot in https://github.com/sktime/pytorch-forecasting/pull/
46+
* [MNT] update optuna requirement from `<4.0.0,>=3.1.0` to `>=3.1.0,<5.0.0` by @dependabot in https://github.com/sktime/pytorch-forecasting/pull/1715
47+
* [MNT] CODEOWNERS file by @fkiraly in https://github.com/sktime/pytorch-forecasting/pull/1710
48+
49+
### All Contributors
50+
51+
@airookie17,
52+
@benHeid,
53+
@eugenio-mercuriali,
54+
@ewth,
55+
@fkiraly,
56+
@fnhirwa,
57+
@XinyuWuu,
58+
@yarnabrina
59+
360
## v1.1.1
461

562
Hotfix for accidental package name change in `pyproject.toml`.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ black = 1
6161
[project]
6262
name = "pytorch-forecasting"
6363
readme = "README.md" # Markdown files are supported
64-
version = "1.1.1" # is being replaced automatically
64+
version = "1.2.0" # is being replaced automatically
6565

6666
authors = [
6767
{name = "Jan Beitner"},

pytorch_forecasting/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
PyTorch Forecasting package for timeseries forecasting with PyTorch.
33
"""
44

5-
__version__ = "1.1.1"
5+
__version__ = "1.2.0"
66

77
from pytorch_forecasting.data import (
88
EncoderNormalizer,

0 commit comments

Comments
 (0)