Skip to content

Commit 143b9a2

Browse files
Fixups for release 0.8.1; bump version (#605)
1 parent 52c11a7 commit 143b9a2

File tree

5 files changed

+65
-23
lines changed

5 files changed

+65
-23
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.8.1
2+
3+
- fixups to tutorial notebooks (#604, @michaeldeistler)
4+
- remove `delete_channel()` (#604, @michaeldeistler)
5+
6+
17
# 0.8.0
28

39
### New features
@@ -31,6 +37,10 @@ cell.set("axial_diffusion_CaCon_i", 1.0)
3137
```
3238
- Introduce ion pumps (#438, @michaeldeistler)
3339

40+
### Minor changes
41+
42+
- rename `delete_channel()` to `delete()` (#438, @michaeldeistler)
43+
3444
### Bug fixes
3545

3646
- Fix for simulation of morphologies with inhomogenous numbers of compartments (#438, @michaeldeistler)

docs/tutorials/08_importing_morphologies.ipynb

Lines changed: 53 additions & 17 deletions
Large diffs are not rendered by default.

jaxley/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This file is part of Jaxley, a differentiable neuroscience simulator. Jaxley is
22
# licensed under the Apache License Version 2.0, see <https://www.apache.org/licenses/>
33

4-
VERSION = (0, 8, 0)
4+
VERSION = (0, 8, 1)
55

66
__version__ = ".".join(map(str, VERSION))

jaxley/modules/base.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1864,10 +1864,6 @@ def delete_diffusion(self, state: str) -> None:
18641864
self.base.diffusion_states.remove(state)
18651865
self.base.nodes.drop(columns=[f"axial_diffusion_{state}"], inplace=True)
18661866

1867-
@deprecated("0.8.0", "Use `.delete(Channel())` instead.")
1868-
def delete_channel(self, channel: Channel):
1869-
self.delete(channel)
1870-
18711867
def delete(self, channel: Union[Channel, Pump]):
18721868
"""Remove a channel or pump from the module.
18731869

pyproject.toml

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

55
[project]
66
name = "Jaxley"
7-
version = "0.8.0"
7+
version = "0.8.1"
88
description = "Differentiable neuron simulations."
99
authors = [
1010
{ name = "jaxleyverse", email = "jaxleyverse@gmail.com"},

0 commit comments

Comments
 (0)