Skip to content

Commit 241461d

Browse files
committed
Updated version number to v0.1.0.
1 parent ceb5225 commit 241461d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
[tool.poetry]
77
name = "xboinc"
8-
version = "0.0.3"
8+
version = "0.1.0"
99
description = "Xsuite BOINC interface"
1010
homepage = "https://github.com/xsuite/xboinc"
1111
repository = "https://github.com/xsuite/xboinc"

tests/test_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from xboinc import __version__
22

33
def test_version():
4-
assert __version__ == '0.0.3'
4+
assert __version__ == '0.1.0'
55

xboinc/executable/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// Do not change
2323
// ===============================================================================================
2424
// version XXX.YYY as int (no patch)
25-
int64_t xboinc_exec_version = 0;
25+
int64_t xboinc_exec_version = 1;
2626
// ===============================================================================================
2727

2828

xboinc/general.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# Do not change
1313
# ==========================================================================================
1414

15-
__version__ = '0.0.3'
15+
__version__ = '0.1.0'
1616

1717
# These are the xsuite modules that are used by boinc and the versions they are tied to.
1818
# This will be automatically updated from the active environment when making a minor release.

0 commit comments

Comments
 (0)