Skip to content

Commit

Permalink
bump version and prepare release (#431)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeldeistler authored Sep 23, 2024
1 parent e1338a5 commit 7648bbe
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# v0.3.0

### New features

- New solver: `jx.integrate(..., voltage_solver="jax.sparse")` which has very low
compile time (#418, @michaeldeistler)
- Support for different number of compartments per branch at initilization (modifying
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,
#426, @michaeldeistler)
- Bugfixes for tutorials on website


# v0.2.1

- Bugfix for using `states` in `init_state` of the channel (#421, @michaeldeistler)
Expand Down
2 changes: 1 addition & 1 deletion jaxley/__version__.py
Original file line number Diff line number Diff line change
@@ -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 <https://www.apache.org/licenses/>

VERSION = (0, 2, 1)
VERSION = (0, 3, 0)

__version__ = ".".join(map(str, VERSION))
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "Jaxley"
version = "0.2.1"
version = "0.3.0"
description = "Differentiable neuron simulations."
authors = [
{ name = "jaxleyverse", email = "[email protected]"},
Expand Down

0 comments on commit 7648bbe

Please sign in to comment.