Skip to content

Commit 30844c7

Browse files
authored
Release 0.23.1 (#1483)
* bump u8darts * update changelog * bump u8darts * update changelog * update changelog * update release date in changelog
1 parent ff9aa90 commit 30844c7

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,25 @@ We do our best to avoid the introduction of breaking changes,
55
but cannot always guarantee backwards compatibility. Changes that may **break code which uses a previous release of Darts** are marked with a "🔴".
66

77
## [Unreleased](https://github.com/unit8co/darts/tree/master)
8-
[Full Changelog](https://github.com/unit8co/darts/compare/0.23.0...master)
8+
[Full Changelog](https://github.com/unit8co/darts/compare/0.23.1...master)
9+
10+
## [0.23.1](https://github.com/unit8co/darts/tree/0.23.1) (2023-01-12)
11+
Patch release
12+
13+
**Fixed**
14+
- Fix an issue in `TimeSeries` which made it incompatible with Python 3.7.
15+
[#1449](https://github.com/unit8co/darts/pull/1449) by [Dennis Bader](https://github.com/dennisbader).
16+
- Fix an issue with static covariates when series have variable lengths with `RegressionModel`s.
17+
[#1469](https://github.com/unit8co/darts/pull/1469) by [Eliane Maalouf](https://github.com/eliane-maalouf).
18+
- Fix an issue with PyTorch Lightning trainer handling.
19+
[#1459](https://github.com/unit8co/darts/pull/1459) by [Dennis Bader](https://github.com/dennisbader).
20+
- Fix an issue with `historical_forecasts()` retraining PyTorch models iteratively instead of from scratch.
21+
[#1465](https://github.com/unit8co/darts/pull/1465) by [Dennis Bader](https://github.com/dennisbader).
22+
- Fix an issue with `historical_forecasts()` not working in some cases when `future_covariates`
23+
are provided and `start` is not specified. [#1481](https://github.com/unit8co/darts/pull/1481)
24+
by [Maxime Dumonal](https://github.com/dumjax).
25+
- Fix an issue with `slice_n_points` functions on integer indexes.
26+
[#1482](https://github.com/unit8co/darts/pull/1482) by [Julien Herzen](https://github.com/hrzn).
927

1028
## [0.23.0](https://github.com/unit8co/darts/tree/0.23.0) (2022-12-23)
1129
### For users of the library:

setup_u8darts.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def read_requirements(path):
2828

2929
setup(
3030
name="u8darts",
31-
version="0.23.0",
31+
version="0.23.1",
3232
description="A python library for easy manipulation and forecasting of time series.",
3333
long_description=LONG_DESCRIPTION,
3434
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)