From 241461d94a315979263840d78b7c97fc45cf3e1c Mon Sep 17 00:00:00 2001 From: Frederik Van der Veken Date: Sat, 16 Sep 2023 03:02:41 +0200 Subject: [PATCH] Updated version number to v0.1.0. --- pyproject.toml | 2 +- tests/test_version.py | 2 +- xboinc/executable/main.c | 2 +- xboinc/general.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 33d1a9d..f9a78a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ [tool.poetry] name = "xboinc" -version = "0.0.3" +version = "0.1.0" description = "Xsuite BOINC interface" homepage = "https://github.com/xsuite/xboinc" repository = "https://github.com/xsuite/xboinc" diff --git a/tests/test_version.py b/tests/test_version.py index 0a98f4e..473877a 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -1,5 +1,5 @@ from xboinc import __version__ def test_version(): - assert __version__ == '0.0.3' + assert __version__ == '0.1.0' diff --git a/xboinc/executable/main.c b/xboinc/executable/main.c index be77cfa..1258cae 100644 --- a/xboinc/executable/main.c +++ b/xboinc/executable/main.c @@ -22,7 +22,7 @@ // Do not change // =============================================================================================== // version XXX.YYY as int (no patch) -int64_t xboinc_exec_version = 0; +int64_t xboinc_exec_version = 1; // =============================================================================================== diff --git a/xboinc/general.py b/xboinc/general.py index f096ce4..0b8c813 100644 --- a/xboinc/general.py +++ b/xboinc/general.py @@ -12,7 +12,7 @@ # Do not change # ========================================================================================== -__version__ = '0.0.3' +__version__ = '0.1.0' # These are the xsuite modules that are used by boinc and the versions they are tied to. # This will be automatically updated from the active environment when making a minor release.