From a8d54ad286f379860554eb2e91b01751c94086cc Mon Sep 17 00:00:00 2001 From: Michael Deistler Date: Mon, 16 Sep 2024 10:51:47 -0700 Subject: [PATCH] Prepare release (#422) --- CHANGELOG.md | 7 +++++++ jaxley/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d1e1a1f8..b0e5279b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# v0.2.1 + +- Bugfix for using `states` in `init_state` of the channel (#421, @michaeldeistler) +- Bugfix for tutorial on building custom channels (#421, @michaeldeistler) +- Add `jaxley-mech` as `dev` dependency to use it in testsing (#421, @michaeldeistler) + + # v0.2.0 ### New features diff --git a/jaxley/__version__.py b/jaxley/__version__.py index 1c1e88ca..9def7546 100644 --- a/jaxley/__version__.py +++ b/jaxley/__version__.py @@ -1,6 +1,6 @@ # This file is part of Jaxley, a differentiable neuroscience simulator. Jaxley is # licensed under the Apache License Version 2.0, see -VERSION = (0, 2, 0) +VERSION = (0, 2, 1) __version__ = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index 2b93f9a2..8997f625 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "Jaxley" -version = "0.2.0" +version = "0.2.1" description = "Differentiable neuron simulations." authors = [ { name = "jaxleyverse", email = "jaxleyverse@gmail.com"},