diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b0e1b0478..846245612 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,6 +1,6 @@ { "core": "0.2.0", - "bindings/c": "0.1.0", + "bindings/c": "0.2.0", "packages/js": "0.1.0", "packages/py": "0.2.0" } diff --git a/bindings/c/CHANGELOG.md b/bindings/c/CHANGELOG.md index c9e4c11f4..233205e6a 100644 --- a/bindings/c/CHANGELOG.md +++ b/bindings/c/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [0.2.0](https://github.com/Ryan-Millard/Img2Num/compare/bindings-c-v0.1.0...bindings-c-v0.2.0) (2026-06-27) + + +### ⚠ BREAKING CHANGES + +* **core:** prevent holes during SVG generation ([#429](https://github.com/Ryan-Millard/Img2Num/issues/429)) + +### 🐛 Bug Fixes + +* **ci:** add NPM_TOKEN to npm publish step so packages/js can authenticate and publish to the npm registry ([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)) +* **core:** prevent holes during SVG generation ([#429](https://github.com/Ryan-Millard/Img2Num/issues/429)) ([14e49f9](https://github.com/Ryan-Millard/Img2Num/commit/14e49f9a05496524e0190ddddf14283fbc907c0b)) +* 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)) +* replace C++20 designated initializers with C++17 compatible assignments ([#448](https://github.com/Ryan-Millard/Img2Num/issues/448)) ([174b8a4](https://github.com/Ryan-Millard/Img2Num/commit/174b8a4b0c86bb62f929bae6e36a64896eba0f21)) + ## 0.1.0 (2026-05-29) diff --git a/bindings/c/CMakeLists.txt b/bindings/c/CMakeLists.txt index a433d1cb3..a1e03074f 100644 --- a/bindings/c/CMakeLists.txt +++ b/bindings/c/CMakeLists.txt @@ -4,7 +4,7 @@ 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.2.0 # x-release-please-version ) include(CMakePackageConfigHelpers)