diff --git a/CHANGELOG.md b/CHANGELOG.md index cb1af088..015708d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ +## v3.23.2 (2024-10-07) + +### Chore + +* chore: adds black-jupyter to dependencies (#318) + +* adds black-jupyter to dependencies + +* formats notebooks ([`ed5d791`](https://github.com/jbloomAus/SAELens/commit/ed5d79148fa161c2e69e959f4ea7a8d9d3a87290)) + +### Fix + +* fix: `hook_sae_acts_post` for Gated models should be post-masking (#322) + +* first commit + +* formatting ([`5e70edc`](https://github.com/jbloomAus/SAELens/commit/5e70edc0a167d895931cf85a4b068970599128b8)) + + ## v3.23.1 (2024-10-03) ### Chore diff --git a/pyproject.toml b/pyproject.toml index 5cd650e1..da77d19c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sae-lens" -version = "3.23.1" +version = "3.23.2" description = "Training and Analyzing Sparse Autoencoders (SAEs)" authors = ["Joseph Bloom"] readme = "README.md" @@ -41,7 +41,7 @@ typing-extensions = "^4.10.0" [tool.poetry.group.dev.dependencies] -black = { version = "24.4.0", extras = ["jupyter"] } +black = { version = "3.23.2", extras = ["jupyter"] } pytest = "^8.0.2" pytest-cov = "^4.1.0" pre-commit = "^3.6.2" diff --git a/sae_lens/__init__.py b/sae_lens/__init__.py index b8fec041..1acd60a1 100644 --- a/sae_lens/__init__.py +++ b/sae_lens/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.23.1" +__version__ = "3.23.2" from .analysis.hooked_sae_transformer import HookedSAETransformer