Skip to content

Commit 7cf4165

Browse files
authored
BRAYNS-641 Release 3.8.0. (#1263)
1 parent 2466c62 commit 7cf4165

File tree

6 files changed

+25
-5
lines changed

6 files changed

+25
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ set(BUILD_SHARED_LIBS ON)
1818
set(CMAKE_CXX_STANDARD 20)
1919
set(CMAKE_CXX_STANDARD_REQUIRED ON)
2020

21-
project(Brayns VERSION 3.7.2)
21+
project(Brayns VERSION 3.8.0)
2222

2323
# Extra CMake scripts
2424
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake)

python/brayns/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
# along with this library; if not, write to the Free Software Foundation, Inc.,
1919
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2020

21-
VERSION = "3.7.2"
21+
VERSION = "3.8.0"
2222
"""Version tag of brayns Python package (major.minor.patch)."""

python/doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
# built documents.
5959
#
6060
# The short X.Y version.
61-
version = "3.7.2"
61+
version = "3.8.0"
6262
# The full version, including alpha/beta/rc tags.
6363
release = version
6464

python/doc/source/jsonrpcapi/api_circuitexplorer_methods.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ This loader does not support loading binary data using 'upload-model'.
5656
"spheres"
5757
]
5858
},
59+
"growth": {
60+
"description": "Neuron growth [0-1], includes all segments at 1 and none at 0",
61+
"type": "number",
62+
"default": 1
63+
},
5964
"load_axon": {
6065
"description": "Load the axon section of the neuron",
6166
"type": "boolean",
@@ -177,6 +182,11 @@ This loader does not support loading binary data using 'upload-model'.
177182
"spheres"
178183
]
179184
},
185+
"growth": {
186+
"description": "Neuron growth [0-1], includes all segments at 1 and none at 0",
187+
"type": "number",
188+
"default": 1
189+
},
180190
"load_axon": {
181191
"description": "Load the axon section of the neuron",
182192
"type": "boolean",
@@ -249,6 +259,11 @@ This loader does not support loading binary data using 'upload-model'.
249259
"spheres"
250260
]
251261
},
262+
"growth": {
263+
"description": "Neuron growth [0-1], includes all segments at 1 and none at 0",
264+
"type": "number",
265+
"default": 1
266+
},
252267
"load_axon": {
253268
"description": "Load the axon section of the neuron",
254269
"type": "boolean",
@@ -364,6 +379,11 @@ This loader does not support loading binary data using 'upload-model'.
364379
"spheres"
365380
]
366381
},
382+
"growth": {
383+
"description": "Neuron growth [0-1], includes all segments at 1 and none at 0",
384+
"type": "number",
385+
"default": 1
386+
},
367387
"load_axon": {
368388
"description": "Load the axon section of the neuron",
369389
"type": "boolean",

python/doc/source/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "brayns",
33
"description": "Brayns python API",
4-
"version": "3.7.2",
4+
"version": "3.8.0",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/BlueBrain/Brayns.git"

python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = brayns
3-
version = 3.7.2
3+
version = 3.8.0
44
url = https://github.com/BlueBrain/Brayns
55
download_url = https://github.com/BlueBrain/Brayns
66
project_urls =

0 commit comments

Comments
 (0)