Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
Specify correct version in find_package(treelite)
  • Loading branch information
hcho3 committed May 18, 2023
1 parent 8612003 commit 1f9dac9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_policy(SET CMP0091 NEW)
set(CMAKE_FIND_NO_INSTALL_PREFIX TRUE FORCE)
cmake_minimum_required(VERSION 3.16)
project(tl2cgen LANGUAGES CXX C VERSION 0.3.0)
project(tl2cgen LANGUAGES CXX C VERSION 0.3.1)

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

Expand Down
2 changes: 1 addition & 1 deletion cmake/ExternalLibs.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include(FetchContent)

# Treelite
find_package(Treelite 3.4.0)
find_package(Treelite 3.9.0)
if (Treelite_FOUND)
set(TREELITE_FROM_SYSTEM_ROOT TRUE)
set(TREELITE_LIB treelite::treelite)
Expand Down
2 changes: 1 addition & 1 deletion java_runtime/tl2cgen4j/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ml.dmlc</groupId>
<artifactId>tl2cgen4j</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<packaging>jar</packaging>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ build-backend = "packager.pep517"

[project]
name = "tl2cgen"
version = "0.3.0"
version = "0.3.1"
authors = [
{name = "Hyunsu Cho", email = "[email protected]"}
]
Expand Down
2 changes: 1 addition & 1 deletion python/tl2cgen/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.3.1

0 comments on commit 1f9dac9

Please sign in to comment.