diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 564645e33..af81a99a6 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { "core": "0.1.0", - "bindings/c": "0.1.0", + "bindings/c": "0.1.1", "packages/js": "0.1.0", "packages/py": "0.1.0" } diff --git a/bindings/c/CHANGELOG.md b/bindings/c/CHANGELOG.md index c9e4c11f4..f5391eb09 100644 --- a/bindings/c/CHANGELOG.md +++ b/bindings/c/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.1.1](https://github.com/Ryan-Millard/Img2Num/compare/bindings-c-v0.1.0...bindings-c-v0.1.1) (2026-06-15) + + +### 🐛 Bug Fixes + +* **ci:** add NPM_TOKEN to npm publish step so packages/js can ([2427d1d](https://github.com/Ryan-Millard/Img2Num/commit/2427d1d3c67b9ebafcbf3a5021ed335a3d0683fc)) +* **core:** add MSVC support via conditional compiler directives — ([2427d1d](https://github.com/Ryan-Millard/Img2Num/commit/2427d1d3c67b9ebafcbf3a5021ed335a3d0683fc)) +* fix broken v0.1.0 release pipeline ([#417](https://github.com/Ryan-Millard/Img2Num/issues/417)) ([2427d1d](https://github.com/Ryan-Millard/Img2Num/commit/2427d1d3c67b9ebafcbf3a5021ed335a3d0683fc)) +* **packages/py:** include third_party/ in sdist and disable example ([2427d1d](https://github.com/Ryan-Millard/Img2Num/commit/2427d1d3c67b9ebafcbf3a5021ed335a3d0683fc)) + ## 0.1.0 (2026-05-29) diff --git a/bindings/c/CMakeLists.txt b/bindings/c/CMakeLists.txt index 32e61fa18..eb6c88e35 100644 --- a/bindings/c/CMakeLists.txt +++ b/bindings/c/CMakeLists.txt @@ -7,7 +7,7 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) project(CImg2Num LANGUAGES CXX # Don't change the inline comment below - release-please needs it - VERSION 0.1.0 # x-release-please-version + VERSION 0.1.1 # x-release-please-version ) include(CMakePackageConfigHelpers)