From bcdefd450bf3caa158f6c8c518cbef7e80aa7a7e Mon Sep 17 00:00:00 2001 From: Richard Pospesel Date: Wed, 13 Mar 2024 02:08:45 +0000 Subject: [PATCH] cgosling: bumped version to 0.2.2 --- source/gosling/Cargo.lock | 2 +- source/gosling/crates/cgosling/CMakeLists.txt | 2 +- source/packages/deb-src/debian/changelog | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/source/gosling/Cargo.lock b/source/gosling/Cargo.lock index a6fbc99e..a251b6c1 100644 --- a/source/gosling/Cargo.lock +++ b/source/gosling/Cargo.lock @@ -208,7 +208,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "cgosling" -version = "0.2.1" +version = "0.2.2" dependencies = [ "anyhow", "backtrace", diff --git a/source/gosling/crates/cgosling/CMakeLists.txt b/source/gosling/crates/cgosling/CMakeLists.txt index d5a8fa6e..b0e63078 100644 --- a/source/gosling/crates/cgosling/CMakeLists.txt +++ b/source/gosling/crates/cgosling/CMakeLists.txt @@ -1,6 +1,6 @@ set(CGOSLING_MAJOR_VERSION "0" CACHE STRING "SemVer major version of cgosling library" FORCE) set(CGOSLING_MINOR_VERSION "2" CACHE STRING "SemVer minor version of cgosling library" FORCE) -set(CGOSLING_PATCH_VERSION "1" CACHE STRING "SemVer patch version of cgosling library" FORCE) +set(CGOSLING_PATCH_VERSION "2" CACHE STRING "SemVer patch version of cgosling library" FORCE) set(CGOSLING_VERSION "${CGOSLING_MAJOR_VERSION}.${CGOSLING_MINOR_VERSION}.${CGOSLING_PATCH_VERSION}" CACHE STRING "SemVer of the cgosling library" FORCE) # generate Cargo.toml file diff --git a/source/packages/deb-src/debian/changelog b/source/packages/deb-src/debian/changelog index 4f6dbda7..7ad8dce2 100644 --- a/source/packages/deb-src/debian/changelog +++ b/source/packages/deb-src/debian/changelog @@ -1,3 +1,10 @@ +gosling (0.2.2-1) unstable; urgency=low + + * Made cmake build-system more idiomatic + * Now building cgosling shared library with C toolchain rather than rustc cdylib target + + -- Richard Pospesel Wed, 13 Mar 2024 00:00:00 +0000 + gosling (0.2.1-1) unstable; urgency=low * Initial release.