Skip to content

Commit d82b9f3

Browse files
chore(release): 1.8.0
BREAKING: Remove DATE decomposition and retrospective mode (added in 1.6.0). Also fix CHANGELOG to properly section 1.7.0 (horseshoe prior).
1 parent c78c168 commit d82b9f3

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on Keep a Changelog.
66

7-
## [Unreleased]
7+
## [1.8.0] - 2026-03-26
88

99
### Removed
1010

@@ -14,6 +14,8 @@ The format is based on Keep a Changelog.
1414
- Retrospective mode (`mode="retrospective"`): treatment indicator covariate approach.
1515
Removed along with DATE decomposition.
1616

17+
## [1.7.0] - 2026-03-25
18+
1719
### Added
1820

1921
- Horseshoe prior as alternative to spike-and-slab via `ModelOptions(prior_type='horseshoe')`

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "causal_impact_core"
3-
version = "1.7.0"
3+
version = "1.8.0"
44
edition = "2021"
55

66
[lib]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "bsts-causalimpact"
7-
version = "1.7.0"
7+
version = "1.8.0"
88
description = "CausalImpact for Python with Rust Gibbs sampler (R-compatible)"
99
readme = "README.md"
1010
requires-python = ">=3.10"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ mod kalman;
99
mod sampler;
1010
mod state_space;
1111

12-
const MODULE_VERSION: &str = "1.7.0";
12+
const MODULE_VERSION: &str = "1.8.0";
1313

1414
#[pyclass(skip_from_py_object)]
1515
#[derive(Clone)]

0 commit comments

Comments
 (0)