diff --git a/pyproject.toml b/pyproject.toml index 70af1e9f..c3fb8391 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xcoll" -version = "0.5.11rc0" +version = "0.5.11" description = "Xsuite collimation package" homepage = "https://github.com/xsuite/xcoll" repository = "https://github.com/xsuite/xcoll" @@ -26,13 +26,13 @@ ruamel-yaml = { version = "^0.17.31", optional = true } numpy = ">=1.0" pandas = ">=1.4" xobjects = ">=0.4.5" -xdeps = ">=0.7.4" -xpart = ">=0.19.1" -xtrack = ">=0.69.7" +xdeps = ">=0.8.1" +xpart = ">=0.19.3" +xtrack = ">=0.70.3" [tool.poetry.dev-dependencies] pytest = ">=7.3" -xaux = ">=0.2.2" +xaux = ">=0.2.1" [tool.poetry.extras] tests = ["pytest", "ruamel-yaml", "pytest-html", "pytest-xdist"] diff --git a/tests/test_version.py b/tests/test_version.py index 5352a35b..b59f0fc0 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -6,4 +6,4 @@ from xcoll import __version__ def test_version(): - assert __version__ == '0.5.11rc0' + assert __version__ == '0.5.11' diff --git a/xcoll/general.py b/xcoll/general.py index 41335d8a..d1250bdb 100644 --- a/xcoll/general.py +++ b/xcoll/general.py @@ -12,5 +12,5 @@ # ====================== # Do not change # ====================== -__version__ = '0.5.11rc0' +__version__ = '0.5.11' # ======================