Skip to content

Commit 1f9dac9

Browse files
committed
Release 0.3.1
Specify correct version in find_package(treelite)
1 parent 8612003 commit 1f9dac9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_policy(SET CMP0091 NEW)
22
set(CMAKE_FIND_NO_INSTALL_PREFIX TRUE FORCE)
33
cmake_minimum_required(VERSION 3.16)
4-
project(tl2cgen LANGUAGES CXX C VERSION 0.3.0)
4+
project(tl2cgen LANGUAGES CXX C VERSION 0.3.1)
55

66
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
77

cmake/ExternalLibs.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
include(FetchContent)
22

33
# Treelite
4-
find_package(Treelite 3.4.0)
4+
find_package(Treelite 3.9.0)
55
if (Treelite_FOUND)
66
set(TREELITE_FROM_SYSTEM_ROOT TRUE)
77
set(TREELITE_LIB treelite::treelite)

java_runtime/tl2cgen4j/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<modelVersion>4.0.0</modelVersion>
66
<groupId>ml.dmlc</groupId>
77
<artifactId>tl2cgen4j</artifactId>
8-
<version>0.3.0</version>
8+
<version>0.3.1</version>
99
<packaging>jar</packaging>
1010
<properties>
1111
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "packager.pep517"
77

88
[project]
99
name = "tl2cgen"
10-
version = "0.3.0"
10+
version = "0.3.1"
1111
authors = [
1212
{name = "Hyunsu Cho", email = "[email protected]"}
1313
]

python/tl2cgen/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.3.0
1+
0.3.1

0 commit comments

Comments
 (0)