From 5bbafa1cd8661b49c725ab3c600f2efe320010c8 Mon Sep 17 00:00:00 2001 From: vvbragin Date: Tue, 19 Sep 2023 19:29:09 +0200 Subject: [PATCH] VERSION 1.0.5 --- CHANGES.md | 10 +++++++++- doc/source/conf.py | 4 ++-- netpyne/__init__.py | 2 +- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 028dd4de7..b9d5e5060 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -# Version in development +# Version 1.0.5 **New features** @@ -6,6 +6,8 @@ - Added colorbar to CSD plot +- Support for Sun Grid Engine HPC + - Extended sim.gatherData() with more optional arguments for flexibility - Specify linear/log scale in `plotRatePSD()` @@ -14,6 +16,10 @@ - Check RxD specification for potential syntax issues +- Prevent zero population size in scaled-down models + +- Better messages for validation errors + **Bug fixes** - Fixed errors in plotting with sim.cfg.gatherOnlySimData=True @@ -26,6 +32,8 @@ - Fixed performance issue in `plotConn()` with `groupBy='pop'` (default) +- Fixed `recordTraces` to not require more presicion than segment size (for stim and synMech) + # Version 1.0.4.2 **Bug fixes** diff --git a/doc/source/conf.py b/doc/source/conf.py index 646653a17..e5f737a02 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -67,9 +67,9 @@ # built documents. # # The short X.Y version. -version = '1.0.4.2' +version = '1.0.5' # The full version, including alpha/beta/rc tags. -release = '1.0.4.2' +release = '1.0.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/netpyne/__init__.py b/netpyne/__init__.py index 869b83cf6..2c9098ded 100644 --- a/netpyne/__init__.py +++ b/netpyne/__init__.py @@ -4,7 +4,7 @@ NetPyNE consists of a number of sub-packages and modules. """ -__version__ = '1.0.4.2' +__version__ = '1.0.5' import os, sys display = os.getenv('DISPLAY')