Skip to content

Commit

Permalink
bump version to 1.1.0, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
rainyl committed Jul 4, 2024
1 parent cc92b06 commit f9f934f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
## 1.1.0

- Breaking Change: Asynchronous support, APIs ended with `Async` support asynchronous call.
- Breaking Change: `Rng.uniform,gaussian,next` returns a `Stream` now, [#135](https://github.com/rainyl/opencv_dart/pull/135)
- Breaking Change: delete `xdata` of Mat, Make `Mat.fromList` copy data internally to avoid extra data management, now it will copy the input data 2 times
- Breaking Change: `class MatType` -> `extension type const MatType(int value)`
- remove the dependency of `equatable`
- New: `ximgproc` and `xobjdetect` modules.
- `(int, int).toSize(Arena arena)` -> `(int, int).asSize`
- `(int, int).toPoint(Arena arena)` -> `(int, int).asPoint`
- `(double, double, double, double).toScalar(Arena arena)` -> `(double, double, double, double).asScalar`
- New: `Mat.fromRange`
- New: `Point3i`, `VecPoint3i`
- remove `BlockMeanHash.compareS`, `BlockMeanHash.computeS`
- remove `FaceRecognizerSF.newRecognizer`
- More info at: [#143](https://github.com/rainyl/opencv_dart/discussions/143)

## 1.1.0-dev.1

- New: EXPERIMENTAL Asynchronous support by @abdelaziz-mahdy and @rainyl, try it and open an issue if you have any problems.
Expand Down
2 changes: 1 addition & 1 deletion binary.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.0-dev.1
1.1.0
3 changes: 1 addition & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: opencv_dart
description: "OpenCV4 bindings for Dart language and Flutter, using dart:ffi. The most complete OpenCV bindings for Dart! With asynchronous support now!"
version: 1.1.0-dev.1
version: 1.1.0
homepage: https://github.com/rainyl/opencv_dart

environment:
Expand All @@ -16,7 +16,6 @@ dependencies:
args: ^2.5.0
archive: ^3.6.1
stack_trace: ^1.11.1
meta: ^1.11.0

dev_dependencies:
ffigen: ^12.0.0
Expand Down

0 comments on commit f9f934f

Please sign in to comment.