Skip to content

Commit 3aec813

Browse files
committed
chore(release): publish packages
- super_clipboard@0.9.1 - super_drag_and_drop@0.9.1 - super_context_menu@0.9.1 - super_native_extensions@0.9.1 - super_hot_key@0.9.1 - super_keyboard_layout@0.9.1
1 parent 6ae2ad0 commit 3aec813

17 files changed

Lines changed: 70 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,42 @@
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+
## 2025-06-11
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`super_clipboard` - `v0.9.1`](#super_clipboard---v091)
19+
- [`super_drag_and_drop` - `v0.9.1`](#super_drag_and_drop---v091)
20+
- [`super_context_menu` - `v0.9.1`](#super_context_menu---v091)
21+
- [`super_native_extensions` - `v0.9.1`](#super_native_extensions---v091)
22+
- [`super_hot_key` - `v0.9.1`](#super_hot_key---v091)
23+
- [`super_keyboard_layout` - `v0.9.1`](#super_keyboard_layout---v091)
24+
25+
---
26+
27+
#### `super_clipboard` - `v0.9.1`
28+
29+
#### `super_drag_and_drop` - `v0.9.1`
30+
31+
#### `super_context_menu` - `v0.9.1`
32+
33+
#### `super_native_extensions` - `v0.9.1`
34+
35+
#### `super_hot_key` - `v0.9.1`
36+
37+
- Bump "super_hot_key" to `0.9.1`.
38+
39+
#### `super_keyboard_layout` - `v0.9.1`
40+
41+
642
## 2025-06-08
743

844
### Changes

super_clipboard/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.9.1
2+
13
## 0.9.0
24

35
## 0.9.0-dev.6

super_clipboard/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies:
3131
sdk: flutter
3232
collection: ^1.16.0
3333
flutter_layout_grid: ^2.0.1
34-
super_clipboard: ^0.9.0
34+
super_clipboard: ^0.9.1
3535

3636
# The following adds the Cupertino Icons font to your application.
3737
# Use with the CupertinoIcons class for iOS style icons.

super_clipboard/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: super_clipboard
22
description: Comprehensive clipboard access package for Flutter. Supports reading and writing of rich text, images and other formats.
3-
version: 0.9.0
3+
version: 0.9.1
44
homepage: https://github.com/superlistapp/super_native_extensions
55
repository: https://github.com/superlistapp/super_native_extensions/tree/main/super_clipboard
66
issue_tracker: https://github.com/superlistapp/super_native_extensions/tree/main/super_clipboard/issues
@@ -14,7 +14,7 @@ dependencies:
1414
sdk: flutter
1515
collection: ^1.16.0
1616
meta: ^1.7.0
17-
super_native_extensions: ^0.9.0
17+
super_native_extensions: ^0.9.1
1818
dev_dependencies:
1919
flutter_test:
2020
sdk: flutter

super_context_menu/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.9.1
2+
13
## 0.9.0
24

35
## 0.9.0-dev.6

super_context_menu/example/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ environment:
99
dependencies:
1010
flutter:
1111
sdk: flutter
12-
super_context_menu: ^0.9.0
13-
super_drag_and_drop: ^0.9.0
12+
super_context_menu: ^0.9.1
13+
super_drag_and_drop: ^0.9.1
1414

1515
dev_dependencies:
1616
flutter_test:

super_context_menu/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: super_context_menu
22
description: Context menu for Flutter that can seamlesly transition to drag & drop on mobile. Uses system context menu on iOS, macOS and Linux.
3-
version: 0.9.0
3+
version: 0.9.1
44
homepage: https://github.com/superlistapp/super_native_extensions
55

66
environment:
@@ -10,7 +10,7 @@ environment:
1010
dependencies:
1111
flutter:
1212
sdk: flutter
13-
super_native_extensions: ^0.9.0
13+
super_native_extensions: ^0.9.1
1414
collection: ^1.16.0
1515
device_info_plus: ">=10.0.1 <12.0.0"
1616
pixel_snap: ^0.1.1

super_drag_and_drop/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.9.1
2+
13
## 0.9.0
24

35
## 0.9.0-dev.6

super_drag_and_drop/example/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ dependencies:
3232
flutter:
3333
sdk: flutter
3434
collection: ^1.16.0
35-
super_clipboard: ^0.9.0
36-
super_drag_and_drop: ^0.9.0
35+
super_clipboard: ^0.9.1
36+
super_drag_and_drop: ^0.9.1
3737
super_clipboard_example:
3838
path: ../../super_clipboard/example
39-
super_context_menu: ^0.9.0
39+
super_context_menu: ^0.9.1
4040
super_sliver_list: ^0.4.1
4141

4242
# The following adds the Cupertino Icons font to your application.

super_drag_and_drop/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: super_drag_and_drop
22
description: Native Drag and Drop support for Flutter. Allows dragging contents across applications.
3-
version: 0.9.0
3+
version: 0.9.1
44
homepage: https://github.com/superlistapp/super_native_extensions
55

66
environment:
@@ -11,8 +11,8 @@ dependencies:
1111
flutter:
1212
sdk: flutter
1313
collection: ^1.16.0
14-
super_native_extensions: ^0.9.0
15-
super_clipboard: ^0.9.0
14+
super_native_extensions: ^0.9.1
15+
super_clipboard: ^0.9.1
1616
dev_dependencies:
1717
flutter_test:
1818
sdk: flutter

0 commit comments

Comments
 (0)