Skip to content

Commit

Permalink
BRAYNS 555 - 3.2.1 Release preparation (#1190)
Browse files Browse the repository at this point in the history
  • Loading branch information
NadirRoGue committed Jun 26, 2023
1 parent 1095bb8 commit 8b1397f
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -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)
Expand Down
8 changes: 8 additions & 0 deletions 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:**
Expand Down
2 changes: 1 addition & 1 deletion python/brayns/version.py
Expand Up @@ -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)."""
2 changes: 1 addition & 1 deletion python/doc/source/conf.py
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion python/doc/source/jsonrpcapi/api.rst
Expand Up @@ -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
5 changes: 5 additions & 0 deletions python/doc/source/jsonrpcapi/api_core_methods.rst
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion python/doc/source/pythonapi/core.rst
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion 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 =
Expand Down

0 comments on commit 8b1397f

Please sign in to comment.