diff --git a/CMakeLists.txt b/CMakeLists.txt index d8de4b8c..4decc5e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_policy(SET CMP0091 NEW) set(CMAKE_FIND_NO_INSTALL_PREFIX TRUE FORCE) cmake_minimum_required(VERSION 3.16 FATAL_ERROR) -project(treelite LANGUAGES CXX C VERSION 4.5.0) +project(treelite LANGUAGES CXX C VERSION 4.6.0) if(POLICY CMP0135) cmake_policy(SET CMP0135 NEW) endif() diff --git a/dev/change_version.py b/dev/change_version.py index 9e424aae..790d971f 100644 --- a/dev/change_version.py +++ b/dev/change_version.py @@ -40,7 +40,7 @@ def update_pypkg( assert rc_ver version = version + f"rc{rc_ver}" if is_dev: - version = version + "-dev" + version = version + ".dev0" pyver_path = PY_PACKAGE / "treelite" / "VERSION" with open(pyver_path, "w", encoding="utf-8") as fd: diff --git a/python/pyproject.toml b/python/pyproject.toml index e69d505b..8b470f71 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "packager.pep517" [project] name = "treelite" -version = "4.5.0-dev" +version = "4.6.0.dev0" authors = [ {name = "Hyunsu Cho", email = "chohyu01@cs.washington.edu"} ] diff --git a/python/treelite/VERSION b/python/treelite/VERSION index 63bdbfad..4643863b 100644 --- a/python/treelite/VERSION +++ b/python/treelite/VERSION @@ -1 +1 @@ -4.5.0-dev +4.6.0.dev0