Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,3 @@ docs/build/
docs/static/js/api.json
docs/static/docs
docs/docs/js/api/
docs/changelog
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"core": "0.1.0",
"core": "0.2.0",
"bindings/c": "0.1.0",
"packages/js": "0.1.0",
"packages/py": "0.1.0"
Expand Down
18 changes: 18 additions & 0 deletions core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.2.0](https://github.com/Ryan-Millard/Img2Num/compare/cpp-v0.1.0...cpp-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 guard against invalid num_thresholds, preventing division by zero ([#445](https://github.com/Ryan-Millard/Img2Num/issues/445)) ([31eb2d1](https://github.com/Ryan-Millard/Img2Num/commit/31eb2d17811be70c092fdba8743eb9888c4f69c4))
* **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/js:** support browser and node builds from shared Vite setup ([#449](https://github.com/Ryan-Millard/Img2Num/issues/449)) ([0b2467c](https://github.com/Ryan-Millard/Img2Num/commit/0b2467c672474ef438f17ade91bfb7ed966632ca))
* **packages/py:** include third_party/ in sdist and disable example builds (IMG2NUM_BUILD_EXAMPLES=OFF) in CMake args so Python source distributions bundle all required dependencies ([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)


Expand Down
2 changes: 1 addition & 1 deletion core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
project(Img2Num
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)
Expand Down
Loading