Skip to content

Commit 7ae93bf

Browse files
committed
🔖 release v0.3.0
1 parent 4bbc3e4 commit 7ae93bf

File tree

5 files changed

+75
-2
lines changed

5 files changed

+75
-2
lines changed

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,52 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2023-06-01
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- [`box_transform` - `v0.3.0`](#box_transform---v030)
15+
- [`flutter_box_transform` - `v0.3.0`](#flutter_box_transform---v030)
16+
17+
Packages with other changes:
18+
19+
- There are no breaking changes in this release.
20+
21+
---
22+
23+
#### `box_transform` - `v0.3.0`
24+
25+
- Refactored the core logic to make it more readable, cleaner and easier to maintain.
26+
- Fix issues with resizing, constraints, clamping and flipping.
27+
- [BREAKING]: Replace `flipRect` with `allowFlipping`.
28+
- [BREAKING]: Rename `initialBox` to `initialRect` in `BoxTransformer.move` and `BoxTransformer.resize` methods.
29+
- `ResizeResult` now exposes `laregest` rect and `handle` used.
30+
- Refactored code and performed some cleanup.
31+
- Bump up Dart sdk constraints to `3.0.0`.
32+
- Update all documentation to reflect the new changes.
33+
- Fix broken links in docs.
34+
- Add tests for resizing features.
35+
36+
37+
#### `flutter_box_transform` - `v0.3.0`
38+
39+
- Bump up Dart sdk constraints to `3.0.0`.
40+
- Bump up box_transform version to `0.3.0`.
41+
- [BREAKING]: Replace `onResized` with `onResizeUpdate`.
42+
- [BREAKING]: Replace `flipWhileResizing` with `allowFlippingWhileResizing`.
43+
- [BREAKING]: Replace `onMoved` with `onDragUpdate`.
44+
- [BREAKING]: Rename `resolveResizeModeCallback` to `resizeModeResolver`.
45+
- [BREAKING]: `onChanged` callback now has two parameters: `UITransformResult` and `PointerMoveEvent`.
46+
- [BREAKING]: `onTerminalSizeReached` callback now also exposes underlying `PointerEvent`.
47+
- Add `onResizeStart` and `onResizeEnd` callbacks.
48+
- Add `onDragStart` and `onDragEnd` callbacks for move operation.
49+
- Add simple example alongside an advanced playground example.
50+
51+
652
## 2023-04-07
753

854
### Changes

packages/box_transform/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 0.3.0
2+
3+
- Refactored the core logic to make it more readable, cleaner and easier to maintain.
4+
- Fix issues with resizing, constraints, clamping and flipping.
5+
- [BREAKING]: Replace `flipRect` with `allowFlipping`.
6+
- [BREAKING]: Rename `initialBox` to `initialRect` in `BoxTransformer.move` and `BoxTransformer.resize` methods.
7+
- `ResizeResult` now exposes `laregest` rect and `handle` used.
8+
- Refactored code and performed some cleanup.
9+
- Bump up Dart sdk constraints to `3.0.0`.
10+
- Update all documentation to reflect the new changes.
11+
- Fix broken links in docs.
12+
- Add tests for resizing features.
13+
114
## 0.2.1
215

316
- Update license to Apache 2.0.

packages/box_transform/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: box_transform
22
description: A pure dart implementation of advanced 2D box transformation with easy and simple API.
33

4-
version: 0.2.1
4+
version: 0.3.0
55

66
repository: https://github.com/hyper-designed/box_transform
77
homepage: https://github.com/hyper-designed/box_transform

packages/flutter_box_transform/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.3.0
2+
3+
- Bump up Dart sdk constraints to `3.0.0`.
4+
- Bump up box_transform version to `0.3.0`.
5+
- [BREAKING]: Replace `onResized` with `onResizeUpdate`.
6+
- [BREAKING]: Replace `flipWhileResizing` with `allowFlippingWhileResizing`.
7+
- [BREAKING]: Replace `onMoved` with `onDragUpdate`.
8+
- [BREAKING]: Rename `resolveResizeModeCallback` to `resizeModeResolver`.
9+
- [BREAKING]: `onChanged` callback now has two parameters: `UITransformResult` and `PointerMoveEvent`.
10+
- [BREAKING]: `onTerminalSizeReached` callback now also exposes underlying `PointerEvent`.
11+
- Add `onResizeStart` and `onResizeEnd` callbacks.
12+
- Add `onDragStart` and `onDragEnd` callbacks for move operation.
13+
- Add simple example alongside an advanced playground example.
14+
115
## 0.2.1
216

317
- Update license to Apache 2.0.

packages/flutter_box_transform/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_box_transform
22
description: A Flutter implementation of box_transform package that provides easy 2D box transform operations with advanced resizing of rect in UI.
33

4-
version: 0.2.1
4+
version: 0.3.0
55

66
repository: https://github.com/hyper-designed/box_transform
77
homepage: https://github.com/hyper-designed/box_transform

0 commit comments

Comments
 (0)