Skip to content

Commit

Permalink
BRAYNS-611 Release 3.6.0. (#1235)
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrien4193 committed Feb 22, 2024
1 parent 32a0e79 commit 0eb4897
Show file tree
Hide file tree
Showing 8 changed files with 92 additions and 5 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.5.1)
project(Brayns VERSION 3.6.0)

# Extra CMake scripts
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake)
Expand Down
12 changes: 12 additions & 0 deletions Changelog.md
@@ -1,5 +1,17 @@
# Change Log

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

- Python API improvements [\#1233] (https://github.com/BlueBrain/Brayns/pull/1233)
- Add camera near plane [\#1231] (https://github.com/BlueBrain/Brayns/pull/1231)
- More orientation fixes [\#1230] (https://github.com/BlueBrain/Brayns/pull/1230)
- Add solid color method for vasculature [\#1229] (https://github.com/BlueBrain/Brayns/pull/1229)
- Add sonata tests [\#1226] (https://github.com/BlueBrain/Brayns/pull/1226)

**Implemented fixes and enhancements:**

- Fix default cell orientations [\#1223] (https://github.com/BlueBrain/Brayns/pull/1223)

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

**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.5.1"
VERSION = "3.6.0"
"""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.5.1"
version = "3.6.0"
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
67 changes: 67 additions & 0 deletions python/doc/source/jsonrpcapi/api_core_methods.rst
Expand Up @@ -4108,6 +4108,10 @@ progress notifications.
},
"additionalProperties": false
},
"camera_near_clip": {
"description": "Camera near clipping distance",
"type": "number"
},
"camera_view": {
"title": "View",
"description": "Camera view",
Expand Down Expand Up @@ -4252,6 +4256,35 @@ This entrypoint has no params, the "params" field can hence be omitted or null.

----

get-camera-near-clip
~~~~~~~~~~~~~~~~~~~~

Retreive the current camera clipping distance.

**Params**:

This entrypoint has no params, the "params" field can hence be omitted or null.

**Result**:

.. jsonschema::

{
"type": "object",
"properties": {
"distance": {
"description": "Camera near clipping distance",
"type": "number"
}
},
"required": [
"distance"
],
"additionalProperties": false
}

----

get-camera-orthographic
~~~~~~~~~~~~~~~~~~~~~~~

Expand Down Expand Up @@ -6419,6 +6452,36 @@ null.

----

set-camera-near-clip
~~~~~~~~~~~~~~~~~~~~

Update the camera near clipping distance.

**Params**:

.. jsonschema::

{
"type": "object",
"properties": {
"distance": {
"description": "Camera near clipping distance",
"type": "number"
}
},
"required": [
"distance"
],
"additionalProperties": false
}

**Result**:

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

----

set-camera-orthographic
~~~~~~~~~~~~~~~~~~~~~~~

Expand Down Expand Up @@ -7360,6 +7423,10 @@ progress notifications.
},
"additionalProperties": false
},
"camera_near_clip": {
"description": "Camera near clipping distance",
"type": "number"
},
"camera_view": {
"title": "View",
"description": "Camera view",
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.5.1",
"version": "3.6.0",
"repository": {
"type": "git",
"url": "https://github.com/BlueBrain/Brayns.git"
Expand Down
8 changes: 8 additions & 0 deletions python/doc/source/pythonapi/core.rst
Expand Up @@ -131,6 +131,14 @@ gbuffer_exporter
:undoc-members:
:show-inheritance:

near_clip
---------

.. automodule:: brayns.core.near_clip
:members: get_camera_near_clip, set_camera_near_clip
:undoc-members:
:show-inheritance:

view
----

Expand Down
2 changes: 1 addition & 1 deletion python/setup.cfg
@@ -1,6 +1,6 @@
[metadata]
name = brayns
version = 3.5.1
version = 3.6.0
url = https://github.com/BlueBrain/Brayns
download_url = https://github.com/BlueBrain/Brayns
project_urls =
Expand Down

0 comments on commit 0eb4897

Please sign in to comment.