Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added notebook for axial currents #4

Merged
merged 1 commit into from
Aug 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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