diff --git a/CMakeLists.txt b/CMakeLists.txt index d34322530..d934a6a43 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.2.0) +project(Brayns VERSION 3.2.1) # Extra CMake scripts list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake) diff --git a/Changelog.md b/Changelog.md index 7e8e5e50f..bee811a04 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,13 @@ # Change Log +## [3.2.1](https://github.com/BlueBrain/Brayns/tree/3.2.1) + +**Implemented fixes and enhancements:** + +- Bump libsonata and Brion dependencies [\#1189](https://github.com/BlueBrain/Brayns/pull/1189) +- Migrate cylindric camera to OSPRay [\#1188](https://github.com/BlueBrain/Brayns/pull/1188) +- Added flag to download only in render-image [\#1187](https://github.com/BlueBrain/Brayns/pull/1187) + ## [3.2.0](https://github.com/BlueBrain/Brayns/tree/3.2.0) **Implemented fixes and enhancements:** diff --git a/python/brayns/version.py b/python/brayns/version.py index 34182376d..8096caa8e 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.2.0" +VERSION = "3.2.1" """Version tag of brayns Python package (major.minor.patch).""" diff --git a/python/doc/source/conf.py b/python/doc/source/conf.py index a2ce99c50..423a44cac 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.2.0" +version = "3.2.1" # The full version, including alpha/beta/rc tags. release = version diff --git a/python/doc/source/jsonrpcapi/api.rst b/python/doc/source/jsonrpcapi/api.rst index 859947b7a..f7fd7ca8a 100644 --- a/python/doc/source/jsonrpcapi/api.rst +++ b/python/doc/source/jsonrpcapi/api.rst @@ -6,7 +6,7 @@ JSON-RPC API reference .. toctree:: :maxdepth: 4 - api_cylindriccamera_methods api_atlasexplorer_methods + api_cylindriccamera_methods api_circuitexplorer_methods api_core_methods diff --git a/python/doc/source/jsonrpcapi/api_core_methods.rst b/python/doc/source/jsonrpcapi/api_core_methods.rst index 8324ac767..dea718a7f 100644 --- a/python/doc/source/jsonrpcapi/api_core_methods.rst +++ b/python/doc/source/jsonrpcapi/api_core_methods.rst @@ -6026,6 +6026,11 @@ Render an image of the current context and retreive it according to given params "minimum": 0, "maximum": 100 }, + "render": { + "description": "Disable render if set to false (download only)", + "type": "boolean", + "default": true + }, "send": { "description": "Send image once rendered", "type": "boolean", diff --git a/python/doc/source/metadata.json b/python/doc/source/metadata.json index bdca2942d..ffbee9e88 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.2.0", + "version": "3.2.1", "repository": { "type": "git", "url": "https://github.com/BlueBrain/Brayns.git" diff --git a/python/doc/source/pythonapi/core.rst b/python/doc/source/pythonapi/core.rst index a3bcaf3c0..93874f6bd 100644 --- a/python/doc/source/pythonapi/core.rst +++ b/python/doc/source/pythonapi/core.rst @@ -47,7 +47,7 @@ material -------- .. automodule:: brayns.core.material - :members: CarPaintMaterial, EmissiveMaterial, get_material_name, get_material, GlassMaterial, Material, MatteMaterial, MetalMaterial, PhongMaterial, PlasticMaterial, set_material + :members: CarPaintMaterial, EmissiveMaterial, get_material_name, get_material, GhostMaterial, GlassMaterial, Material, MatteMaterial, MetalMaterial, PhongMaterial, PlasticMaterial, set_material :undoc-members: :show-inheritance: diff --git a/python/setup.cfg b/python/setup.cfg index 74c599eb9..1ef647487 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = brayns -version = 3.2.0 +version = 3.2.1 url = https://github.com/BlueBrain/Brayns download_url = https://github.com/BlueBrain/Brayns project_urls =