From cd861e3cbf16a655e8963d9824aa94ef65067bd6 Mon Sep 17 00:00:00 2001 From: michaeldeistler Date: Wed, 9 Oct 2024 15:25:56 +0200 Subject: [PATCH] bump version; prepare release --- CHANGELOG.md | 18 +++++++++++++++++- jaxley/__version__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 19 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3efe716..3dce1854 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# 0.4.0 + +### New features + +- Changing the number of compartments: `cell.branch(0).set_ncomp(4)` (#436, #440, #445, +@michaeldeistler, @jnsbck) +- New options for plotting: `cell.vis(type='comp')` and `cell.vis(type='morph')` (#432, +#437, @jnsbck) +- Speed optimization for `jx.integrate(..., voltage_solver="jaxley.stone")` (#442, +@michaeldeistler) + +### Documentation + +- new website powered by sphinx: +[`jaxley.readthedocs.io`](https://jaxley.readthedocs.io/) (#434, #435, @michaeldeistler) + + # v0.3.0 ### New features @@ -8,7 +25,6 @@ compile time (#418, @michaeldeistler) the number of compartments after initialization is not yet supported, #418, #426, @michaeldeistler) - ### Bugfixes - Bugfix for capacitances and their interplay with axial conductances (Thanks @Tunenip, diff --git a/jaxley/__version__.py b/jaxley/__version__.py index 8e36bcac..b2395e5e 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, 3, 0) +VERSION = (0, 4, 0) __version__ = ".".join(map(str, VERSION)) diff --git a/pyproject.toml b/pyproject.toml index 9b4106e1..67d1e970 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "Jaxley" -version = "0.3.0" +version = "0.4.0" description = "Differentiable neuron simulations." authors = [ { name = "jaxleyverse", email = "jaxleyverse@gmail.com"},