From 155e6520023d89f903c6753e90ef817d8f783d6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nadir=20Rom=C3=A1n=20Guerrero?= Date: Thu, 3 Jun 2021 09:53:56 +0200 Subject: [PATCH] 3.3.3 Release preparation (#325) --- CMakeLists.txt | 2 +- brain/python/brion/__init__.py | 2 +- brion/plugin/compartmentReportHDF5Sonata.cpp | 2 -- doc/Changelog.md | 11 +++++++++++ 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7c3dd9e6..ce6e7234 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ # Base configuration cmake_minimum_required(VERSION 3.15 FATAL_ERROR) -project(Brion VERSION 3.3.2) +project(Brion VERSION 3.3.3) set(Brion_VERSION_ABI 10) # Enforce C++14 standard diff --git a/brain/python/brion/__init__.py b/brain/python/brion/__init__.py index 12dc09c8..29610131 100644 --- a/brain/python/brion/__init__.py +++ b/brain/python/brion/__init__.py @@ -22,7 +22,7 @@ from . import neuron -__version__ = '3.3.2' +__version__ = '3.3.3' # Import the test helper module if present try: diff --git a/brion/plugin/compartmentReportHDF5Sonata.cpp b/brion/plugin/compartmentReportHDF5Sonata.cpp index d50fc1dd..bd032fb3 100644 --- a/brion/plugin/compartmentReportHDF5Sonata.cpp +++ b/brion/plugin/compartmentReportHDF5Sonata.cpp @@ -424,8 +424,6 @@ bool CompartmentReportHDF5Sonata::_loadFrame(const size_t frameNumber, size_t targetOffset = 0; for (const auto interval : intervals) { - // const auto sourceOffset = boost::icl::lower(interval); - // const auto count = boost::icl::upper(interval) - sourceOffset; const auto sourceOffset = interval.first; const auto count = interval.second - sourceOffset; const auto& slice = diff --git a/doc/Changelog.md b/doc/Changelog.md index a8223531..6104faec 100644 --- a/doc/Changelog.md +++ b/doc/Changelog.md @@ -1,6 +1,17 @@ Changelog {#Changelog} ========= +# Release 3.3.3 + +* [325](https://github.com/BlueBrain/Brion/pull/325) + 3.3.3 Release preparation +* [324](https://github.com/BlueBrain/Brion/pull/324) + Sort returned SONATA report values by node ID +* [323](https://github.com/BlueBrain/Brion/pull/323) + Adds warning message about using Brion to read SONATA format +* [322](https://github.com/BlueBrain/Brion/pull/322) + Update copyright and funding notice + # Release 3.3.2 * [321](https://github.com/BlueBrain/Brion/pull/321)