Skip to content
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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ API is defined in the [API reference](https://meegsim.readthedocs.io/en/stable/a
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Version 0.0.2 (Unreleased)
## Version 0.0.2 (2025-08-25)

### Added

Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ keywords:
- EEG
- connectivity
license: BSD-3-Clause
version: 0.0.1
date-released: '2024-10-31'
version: 0.0.2
date-released: '2025-08-25'
12 changes: 6 additions & 6 deletions docs/_static/versions.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[
{
"name": "0.0.2 (dev)",
"version": "dev",
"url": "https://meegsim.readthedocs.io/en/latest/"
"name": "0.0.2 (stable)",
"version": "0.0.2",
"url": "https://meegsim.readthedocs.io/en/stable/",
"preferred": true
},
{
"name": "0.0.1 (stable)",
"name": "0.0.1",
"version": "0.0.1",
"url": "https://meegsim.readthedocs.io/en/stable/",
"preferred": true
"url": "https://meegsim.readthedocs.io/en/v0.0.1/"
}
]
22 changes: 0 additions & 22 deletions docs/changelog/devel.md
Original file line number Diff line number Diff line change
@@ -1,23 +1 @@
# [Unreleased]

## Added

- A desired level of white noise can be added in sensor space to model measurement
noise ([#58](https://github.com/ctrltz/meegsim/pull/58))
- A possibility to plot the source configuration ([#59](https://github.com/ctrltz/meegsim/pull/59))
- Adjustment of global (all signal vs. all noise sources) SNR ([#64](https://github.com/ctrltz/meegsim/pull/64))
- Adjustment of the standard deviation of source activity ([#66](https://github.com/ctrltz/meegsim/pull/66))
- Allow specifying standard deviation via a SourceEstimate object ([#67](https://github.com/ctrltz/meegsim/pull/67))
- A method for setting phase-phase coupling by adding noise to the shifted copy of input waveform ([#71](https://github.com/ctrltz/meegsim/pull/71))
- Function to convert the sources to mne.Label ([#73](https://github.com/ctrltz/meegsim/pull/73))
- Quick dict-like access to the simulated sources ([#82](https://github.com/ctrltz/meegsim/pull/82))
- Partial control over the amplitude envelope of the coupled waveform: same as input or randomly generated ([#87](https://github.com/ctrltz/meegsim/pull/87))

## Changed

- Reworked normalization of source activity: by default, all source time courses are scaled to make their standard deviation equal to 1 nAm ([#66](https://github.com/ctrltz/meegsim/pull/66))
- Improved performance when adjusting the SNR for a large number of sources ([#68](https://github.com/ctrltz/meegsim/pull/68))

## Fixed

- Fixed a bug that caused different sources to have the same location and/or waveform when random state was explicitly provided ([#76](https://github.com/ctrltz/meegsim/pull/76))
23 changes: 23 additions & 0 deletions docs/changelog/v0.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Version 0.0.2 (2025-08-25)

## Added

- A desired level of white noise can be added in sensor space to model measurement
noise ([#58](https://github.com/ctrltz/meegsim/pull/58))
- A possibility to plot the source configuration ([#59](https://github.com/ctrltz/meegsim/pull/59))
- Adjustment of global (all signal vs. all noise sources) SNR ([#64](https://github.com/ctrltz/meegsim/pull/64))
- Adjustment of the standard deviation of source activity ([#66](https://github.com/ctrltz/meegsim/pull/66))
- Allow specifying standard deviation via a SourceEstimate object ([#67](https://github.com/ctrltz/meegsim/pull/67))
- A method for setting phase-phase coupling by adding noise to the shifted copy of input waveform ([#71](https://github.com/ctrltz/meegsim/pull/71))
- Function to convert the sources to mne.Label ([#73](https://github.com/ctrltz/meegsim/pull/73))
- Quick dict-like access to the simulated sources ([#82](https://github.com/ctrltz/meegsim/pull/82))
- Partial control over the amplitude envelope of the coupled waveform: same as input or randomly generated ([#87](https://github.com/ctrltz/meegsim/pull/87))

## Changed

- Reworked normalization of source activity: by default, all source time courses are scaled to make their standard deviation equal to 1 nAm ([#66](https://github.com/ctrltz/meegsim/pull/66))
- Improved performance when adjusting the SNR for a large number of sources ([#68](https://github.com/ctrltz/meegsim/pull/68))

## Fixed

- Fixed a bug that caused different sources to have the same location and/or waveform when random state was explicitly provided ([#76](https://github.com/ctrltz/meegsim/pull/76))
1 change: 1 addition & 0 deletions docs/user_guide/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@ What's new?
:maxdepth: 1

../changelog/devel.md
../changelog/v0.0.2.md
../changelog/v0.0.1.md
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 = "hatchling.build"

[project]
name = "meegsim"
version = "0.0.2dev"
version = "0.0.2"
authors = [
{ name="Nikolai Kapralov", email="kapralov@cbs.mpg.de" },
{ name="Alina Studenova" },
Expand Down