Skip to content

Commit f302b8b

Browse files
authored
release: v0.0.28 (#356)
2 parents 3aaf04c + d6838a9 commit f302b8b

5 files changed

Lines changed: 34 additions & 2 deletions

File tree

docs/changelogs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
Welcome to the TimeCopilot Changelog. Here, you will find a comprehensive list of all the changes, updates, and improvements made to the TimeCopilot project. This section is designed to keep you informed about the latest features, bug fixes, and enhancements as we continue to develop and refine the TimeCopilot experience. Stay tuned for regular updates and feel free to explore the details of each release below.
44

5+
- [v0.0.28](v0.0.28.md)
56
- [v0.0.27](v0.0.27.md)
67
- [v0.0.26](v0.0.26.md)
78
- [v0.0.25](v0.0.25.md)

docs/changelogs/v0.0.28.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
### Features
2+
3+
* **T0 foundation model**: Added support for [T0](https://huggingface.co/theforecastingcompany/t0-alpha), an open-weights time series foundation model from The Forecasting Company. Use it via the `T0` class. See [#348](https://github.com/TimeCopilot/timecopilot/pull/348).
4+
5+
```python
6+
import pandas as pd
7+
from timecopilot.models.foundation.t0 import T0
8+
9+
df = pd.read_csv(
10+
"https://timecopilot.s3.amazonaws.com/public/data/air_passengers.csv",
11+
parse_dates=["ds"],
12+
)
13+
14+
model = T0()
15+
fcst_df = model.forecast(df, h=12)
16+
```
17+
18+
* **timecopilot-tirex bump**: Bumped `timecopilot-tirex` to `>=0.1.1` and updated the `TiRex` integration to align with the new API. TiRex now returns the model's default quantile knots (0.1–0.9) and validates that custom quantile requests match that set. See [#346](https://github.com/TimeCopilot/timecopilot/pull/346).
19+
20+
### Fixes
21+
22+
* **Relax dependencies**: Relaxed several pinned core dependencies (`lightning`, `logfire`, `opentelemetry-api`, `opentelemetry-sdk`) to minimum-version constraints, moved `ray` to the `distributed` optional extra, and removed `wandb` from core dependencies to reduce install conflicts. See [#355](https://github.com/TimeCopilot/timecopilot/pull/355).
23+
24+
## New Contributors
25+
26+
* @GeoffNN made their first contribution in [#348](https://github.com/TimeCopilot/timecopilot/pull/348)
27+
28+
---
29+
30+
**Full Changelog**: https://github.com/TimeCopilot/timecopilot/compare/v0.0.27...v0.0.28

mkdocs.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ nav:
5555
- api/gift-eval/gift-eval.md
5656
- Changelogs:
5757
- changelogs/index.md
58+
- changelogs/v0.0.28.md
5859
- changelogs/v0.0.27.md
5960
- changelogs/v0.0.26.md
6061
- changelogs/v0.0.25.md

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ license = "MIT"
112112
name = "timecopilot"
113113
readme = "README.md"
114114
requires-python = ">=3.10"
115-
version = "0.0.27"
115+
version = "0.0.28"
116116

117117
[project.optional-dependencies]
118118
distributed = [

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)