Skip to content

Commit ee20279

Browse files
authored
Bump version to 4.6.0.dev0 (#631)
1 parent ca643a6 commit ee20279

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cmake_policy(SET CMP0091 NEW)
33
set(CMAKE_FIND_NO_INSTALL_PREFIX TRUE FORCE)
44
cmake_minimum_required(VERSION 3.16 FATAL_ERROR)
55

6-
project(treelite LANGUAGES CXX C VERSION 4.5.0)
6+
project(treelite LANGUAGES CXX C VERSION 4.6.0)
77
if(POLICY CMP0135)
88
cmake_policy(SET CMP0135 NEW)
99
endif()

dev/change_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def update_pypkg(
4040
assert rc_ver
4141
version = version + f"rc{rc_ver}"
4242
if is_dev:
43-
version = version + "-dev"
43+
version = version + ".dev0"
4444

4545
pyver_path = PY_PACKAGE / "treelite" / "VERSION"
4646
with open(pyver_path, "w", encoding="utf-8") as fd:

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "packager.pep517"
77

88
[project]
99
name = "treelite"
10-
version = "4.5.0-dev"
10+
version = "4.6.0.dev0"
1111
authors = [
1212
{name = "Hyunsu Cho", email = "chohyu01@cs.washington.edu"}
1313
]

python/treelite/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.5.0-dev
1+
4.6.0.dev0

0 commit comments

Comments
 (0)