Skip to content

Commit 70bf60c

Browse files
Bump version, prepare release 0.7.0 (#594)
1 parent 0b6368e commit 70bf60c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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, 6, 2)
4+
VERSION = (0, 7, 0)
55

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

jaxley/modules/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1842,7 +1842,7 @@ def delete_diffusion(self, state: str) -> None:
18421842
self.base.diffusion_states.remove(state)
18431843
self.base.nodes.drop(columns=[f"axial_diffusion_{state}"], inplace=True)
18441844

1845-
@deprecated("0.7.0", "Use `.delete(Channel())` instead.")
1845+
@deprecated("0.8.0", "Use `.delete(Channel())` instead.")
18461846
def delete_channel(self, channel: Channel):
18471847
self.delete(channel)
18481848

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.6.2"
7+
version = "0.7.0"
88
description = "Differentiable neuron simulations."
99
authors = [
1010
{ name = "jaxleyverse", email = "jaxleyverse@gmail.com"},

0 commit comments

Comments
 (0)