Skip to content

Commit

Permalink
added notebook for axial currents (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
espenhgn authored Aug 23, 2023
1 parent c34152d commit bac5d75
Show file tree
Hide file tree
Showing 5 changed files with 416 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Changes proposed in this pull request:
<!-- Please complete this checklist BEFORE submitting your PR to speed along the review process. -->
- [ ] I've read and followed all steps in the [Making a pull request](https://github.com/LFPy/ElectricBrainSignals/blob/main/CONTRIBUTING.md#making-a-pull-request)
section of the `CONTRIBUTING` docs.
- [ ] I've bumped the version number in `brainsignals/version.py` file
- [ ] I've updated or added any relevant docstrings following the syntax described in the
[Writing docstrings](https://github.com/LFPy/ElectricBrainSignals/blob/main/CONTRIBUTING.md#writing-docstrings) section of the `CONTRIBUTING` docs.
- [ ] If this PR fixes a bug, I've added a test that will fail without my fix.
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- removals goes here

## [1.0.0rc3] - 2023-08-23

### Added

- Added Jypyter notebook [notebooks/Ch-6/calc_iaxial.ipynb](https://github.com/LFPy/ElectricBrainSignals/blob/main/notebooks/Ch-6/calc_iaxial.ipynb)

## [1.0.0rc2] - 2023-08-17

### Updated
Expand Down
2 changes: 1 addition & 1 deletion brainsignals/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
_PATCH = "0"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = "rc2"
_SUFFIX = "rc3"

VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR)
VERSION = "{0}.{1}.{2}{3}".format(_MAJOR, _MINOR, _PATCH, _SUFFIX)
Loading

0 comments on commit bac5d75

Please sign in to comment.