Skip to content

Commit

Permalink
BRAYNS 551 - 3.2.0 Release preparation (#1185)
Browse files Browse the repository at this point in the history
  • Loading branch information
NadirRoGue authored Jun 13, 2023
1 parent 4d6fd6a commit 363cc8e
Show file tree
Hide file tree
Showing 7 changed files with 89 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
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.1.2)
project(Brayns VERSION 3.2.0)

# Extra CMake scripts
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake)
Expand Down
11 changes: 11 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Change Log

## [3.2.0](https://github.com/BlueBrain/Brayns/tree/3.2.0)

**Implemented fixes and enhancements:**

- Update libsonata & MorphIO dependencies [\#1184](https://github.com/BlueBrain/Brayns/pull/1184)
- Netcat is now part of the Docker image [\#1183](https://github.com/BlueBrain/Brayns/pull/1183)
- Added Ghost material for Interactive renderer [\#1182](https://github.com/BlueBrain/Brayns/pull/1182)
- Fix a bug in Cell placement loader [\#1181](https://github.com/BlueBrain/Brayns/pull/1181)
- Brayns now requires C++20 [\#1178](https://github.com/BlueBrain/Brayns/pull/1178)
- Upgrade clang-format version [\#1177](https://github.com/BlueBrain/Brayns/pull/1177)

## [3.1.2](https://github.com/BlueBrain/Brayns/tree/3.1.2)

**Implemented fixes and enhancements:**
Expand Down
2 changes: 1 addition & 1 deletion python/brayns/version.py
Original file line number Diff line number Diff line change
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.1.2"
VERSION = "3.2.0"
"""Version tag of brayns Python package (major.minor.patch)."""
2 changes: 1 addition & 1 deletion python/doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# built documents.
#
# The short X.Y version.
version = "3.1.2"
version = "3.2.0"
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
73 changes: 73 additions & 0 deletions python/doc/source/jsonrpcapi/api_core_methods.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4622,6 +4622,41 @@ Returns the material of the given model as a emissive material, if possible.

----

get-material-ghost
~~~~~~~~~~~~~~~~~~

Returns the material of the given model as a ghost material, if possible.

**Params**:

.. jsonschema::

{
"type": "object",
"properties": {
"id": {
"description": "Model ID",
"type": "integer",
"minimum": 0
}
},
"required": [
"id"
],
"additionalProperties": false
}

**Result**:

.. jsonschema::

{
"type": "object",
"additionalProperties": false
}

----

get-material-glass
~~~~~~~~~~~~~~~~~~

Expand Down Expand Up @@ -6480,6 +6515,44 @@ null.

----

set-material-ghost
~~~~~~~~~~~~~~~~~~

Updates the material of the given model to a ghost material. The ghost effect is only visible with the interactive renderer..

**Params**:

.. jsonschema::

{
"type": "object",
"properties": {
"material": {
"title": "Ghost",
"description": "Material parameters",
"type": "object",
"additionalProperties": false
},
"model_id": {
"description": "ID of the model to apply the material",
"type": "integer",
"minimum": 0
}
},
"required": [
"material",
"model_id"
],
"additionalProperties": false
}

**Result**:

This entrypoint has no result, the "result" field is still present but is always
null.

----

set-material-glass
~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion python/doc/source/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "brayns",
"description": "Brayns python API",
"version": "3.1.2",
"version": "3.2.0",
"repository": {
"type": "git",
"url": "https://github.com/BlueBrain/Brayns.git"
Expand Down
2 changes: 1 addition & 1 deletion python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = brayns
version = 3.1.2
version = 3.2.0
url = https://github.com/BlueBrain/Brayns
download_url = https://github.com/BlueBrain/Brayns
project_urls =
Expand Down

0 comments on commit 363cc8e

Please sign in to comment.