From e767fb47ffad49639eb2c816921e5c0fd20cb569 Mon Sep 17 00:00:00 2001 From: Adrien4193 <39053578+Adrien4193@users.noreply.github.com> Date: Thu, 14 Dec 2023 10:42:21 +0100 Subject: [PATCH] BRAYNS-598 Release 4.5.0. (#1221) --- CMakeLists.txt | 2 +- Changelog.md | 8 +++++ python/brayns/version.py | 2 +- python/doc/source/conf.py | 2 +- .../source/jsonrpcapi/api_core_methods.rst | 36 ------------------- python/doc/source/metadata.json | 2 +- python/setup.cfg | 2 +- 7 files changed, 13 insertions(+), 41 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 457f79f55..24b122eb9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ set(BUILD_SHARED_LIBS ON) set(CMAKE_CXX_STANDARD 20) set(CMAKE_CXX_STANDARD_REQUIRED ON) -project(Brayns VERSION 3.4.1) +project(Brayns VERSION 3.5.0) # Extra CMake scripts list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake) diff --git a/Changelog.md b/Changelog.md index 4a5b74f74..f9ed1db75 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,13 @@ # Change Log +## [3.5.0](https://github.com/BlueBrain/Brayns/tree/3.5.0) + +**Implemented fixes and enhancements:** + +- Fixed morphologies modeling and relax some checks [\#1220] (https://github.com/BlueBrain/Brayns/pull/1220) +- Fixed 100% CPU usage [\#1217] (https://github.com/BlueBrain/Brayns/pull/1217) +- Loaders are now on readthedocs.io [\#1216] (https://github.com/BlueBrain/Brayns/pull/1216) + ## [3.4.1](https://github.com/BlueBrain/Brayns/tree/3.4.1) **Implemented fixes and enhancements:** diff --git a/python/brayns/version.py b/python/brayns/version.py index a0ca6e86e..ce4fd268d 100644 --- a/python/brayns/version.py +++ b/python/brayns/version.py @@ -18,5 +18,5 @@ # along with this library; if not, write to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. -VERSION = "3.4.1" +VERSION = "3.5.0" """Version tag of brayns Python package (major.minor.patch).""" diff --git a/python/doc/source/conf.py b/python/doc/source/conf.py index 740f62008..17eeda6ce 100644 --- a/python/doc/source/conf.py +++ b/python/doc/source/conf.py @@ -58,7 +58,7 @@ # built documents. # # The short X.Y version. -version = "3.4.1" +version = "3.5.0" # The full version, including alpha/beta/rc tags. release = version diff --git a/python/doc/source/jsonrpcapi/api_core_methods.rst b/python/doc/source/jsonrpcapi/api_core_methods.rst index b2f1882bf..85ee8cbcd 100644 --- a/python/doc/source/jsonrpcapi/api_core_methods.rst +++ b/python/doc/source/jsonrpcapi/api_core_methods.rst @@ -4078,42 +4078,6 @@ null. ---- -exit-later -~~~~~~~~~~ - -Old monitoring, use 'quit' instead to stop the service. - -.. attention:: - - This entrypoint is DEPRECATED, it will be removed or renamed in the next - major release. - -**Params**: - -.. jsonschema:: - - { - "type": "object", - "properties": { - "minutes": { - "description": "Number of minutes after which Brayns will shut down", - "type": "integer", - "minimum": 0 - } - }, - "required": [ - "minutes" - ], - "additionalProperties": false - } - -**Result**: - -This entrypoint has no result, the "result" field is still present but is always -null. - ----- - export-gbuffers ~~~~~~~~~~~~~~~ diff --git a/python/doc/source/metadata.json b/python/doc/source/metadata.json index 204ba955a..f5cd04995 100644 --- a/python/doc/source/metadata.json +++ b/python/doc/source/metadata.json @@ -1,7 +1,7 @@ { "name": "brayns", "description": "Brayns python API", - "version": "3.4.1", + "version": "3.5.0", "repository": { "type": "git", "url": "https://github.com/BlueBrain/Brayns.git" diff --git a/python/setup.cfg b/python/setup.cfg index 0adac0187..06bcb96f1 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = brayns -version = 3.4.1 +version = 3.5.0 url = https://github.com/BlueBrain/Brayns download_url = https://github.com/BlueBrain/Brayns project_urls =