Skip to content

Commit ad216ef

Browse files
committed
Release v0.2.0
1 parent 02269af commit ad216ef

File tree

3 files changed

+30
-3
lines changed

3 files changed

+30
-3
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,33 @@
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-04-07
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- [`flutter_box_transform` - `v0.2.0`](#flutter_box_transform---v020)
15+
16+
Packages with other changes:
17+
18+
- [`box_transform` - `v0.2.0`](#box_transform---v020)
19+
20+
---
21+
22+
#### `box_transform` - `v0.2.0`
23+
24+
- Fix scaling of rect not matching cursor position.
25+
26+
#### `flutter_box_transform` - `v0.2.0`
27+
28+
- Add `hideHandlesWhenNotResizable` flag to hide handles when the box is not
29+
resizable by @timmaffett.
30+
- BREAKING CHANGE: `TransformableBox.childBuilder` is now `TransformableBox.contentBuilder`.
31+
- More advanced example with multiple boxes.
32+
633
## 2023-04-04
734

835
### Changes

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.1.1
4+
version: 0.2.0
55

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

packages/flutter_box_transform/pubspec.yaml

Lines changed: 2 additions & 2 deletions
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.1.1
4+
version: 0.2.0
55

66
repository: https://github.com/hyper-designed/box_transform
77
homepage: https://github.com/hyper-designed/box_transform
@@ -15,7 +15,7 @@ environment:
1515
dependencies:
1616
flutter:
1717
sdk: flutter
18-
box_transform: ^0.1.1
18+
box_transform: ^0.2.0
1919
vector_math: ^2.1.4
2020

2121
dev_dependencies:

0 commit comments

Comments
 (0)