Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BRAYNS-641 Release 3.8.0. #1263

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.7.2)
project(Brayns VERSION 3.8.0)

# Extra CMake scripts
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake)
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.7.2"
VERSION = "3.8.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.7.2"
version = "3.8.0"
# The full version, including alpha/beta/rc tags.
release = version

Expand Down
20 changes: 20 additions & 0 deletions python/doc/source/jsonrpcapi/api_circuitexplorer_methods.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ This loader does not support loading binary data using 'upload-model'.
"spheres"
]
},
"growth": {
"description": "Neuron growth [0-1], includes all segments at 1 and none at 0",
"type": "number",
"default": 1
},
"load_axon": {
"description": "Load the axon section of the neuron",
"type": "boolean",
Expand Down Expand Up @@ -177,6 +182,11 @@ This loader does not support loading binary data using 'upload-model'.
"spheres"
]
},
"growth": {
"description": "Neuron growth [0-1], includes all segments at 1 and none at 0",
"type": "number",
"default": 1
},
"load_axon": {
"description": "Load the axon section of the neuron",
"type": "boolean",
Expand Down Expand Up @@ -249,6 +259,11 @@ This loader does not support loading binary data using 'upload-model'.
"spheres"
]
},
"growth": {
"description": "Neuron growth [0-1], includes all segments at 1 and none at 0",
"type": "number",
"default": 1
},
"load_axon": {
"description": "Load the axon section of the neuron",
"type": "boolean",
Expand Down Expand Up @@ -364,6 +379,11 @@ This loader does not support loading binary data using 'upload-model'.
"spheres"
]
},
"growth": {
"description": "Neuron growth [0-1], includes all segments at 1 and none at 0",
"type": "number",
"default": 1
},
"load_axon": {
"description": "Load the axon section of the neuron",
"type": "boolean",
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.7.2",
"version": "3.8.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.7.2
version = 3.8.0
url = https://github.com/BlueBrain/Brayns
download_url = https://github.com/BlueBrain/Brayns
project_urls =
Expand Down