Skip to content

Commit

Permalink
Updated version number to v0.1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
freddieknets committed Sep 16, 2023
1 parent ceb5225 commit 241461d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from xboinc import __version__

def test_version():
assert __version__ == '0.0.3'
assert __version__ == '0.1.0'

2 changes: 1 addition & 1 deletion xboinc/executable/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
// ===============================================================================================


Expand Down
2 changes: 1 addition & 1 deletion xboinc/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 241461d

Please sign in to comment.