From dfde2aa11bd36ab5ccbe8e3878400b440a798e45 Mon Sep 17 00:00:00 2001 From: Maroon502 Date: Thu, 11 Apr 2024 22:08:02 +0800 Subject: [PATCH] chore: release v0.1.1+1.8.9 (#1) --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- build.rs | 2 ++ 3 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e5f19b5 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + +## [0.1.1+1.8.9](https://github.com/Maroon502/bonmin-src/compare/v0.1.0+1.8.9...v0.1.1+1.8.9) - 2024-04-11 + +### Added +- allow to link to system libraries diff --git a/Cargo.toml b/Cargo.toml index cd1f359..edd785e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bonmin-src" -version = "0.1.0+1.8.9" +version = "0.1.1+1.8.9" edition = "2021" build = "build.rs" links = "Bonmin" diff --git a/build.rs b/build.rs index afffcfb..c03d1ec 100644 --- a/build.rs +++ b/build.rs @@ -19,6 +19,8 @@ fn main() { LIB_NAME.to_ascii_uppercase() ); + let want_system = utils::want_system(LIB_NAME); + if want_system && link::link_lib_system_if_supported(LIB_NAME) { let mut coinflags = vec!["BONMIN".to_string()];