Skip to content

Commit

Permalink
chore(release): publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Melos Action committed Sep 20, 2024
1 parent 4ed9fb0 commit 7ad47ea
Show file tree
Hide file tree
Showing 12 changed files with 80 additions and 12 deletions.
46 changes: 46 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-09-20

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`yaru_window_linux` - `v0.2.1`](#yaru_window_linux---v021)
- [`yaru_window_manager` - `v0.1.2+1`](#yaru_window_manager---v0121)
- [`yaru_window_platform_interface` - `v0.1.2+1`](#yaru_window_platform_interface---v0121)
- [`yaru_window` - `v0.2.1+1`](#yaru_window---v0211)
- [`yaru_window_web` - `v0.0.3+1`](#yaru_window_web---v0031)

Packages with dependency updates only:

> Packages listed below depend on other packages in this workspace that have had changes. Their versions have been incremented to bump the minimum dependency versions of the packages they depend upon in this project.
- `yaru_window` - `v0.2.1+1`
- `yaru_window_web` - `v0.0.3+1`

---

#### `yaru_window_linux` - `v0.2.1`

- **FIX**(linux): wire up YaruWindow.onClose with didRequestAppExit() (#35).
- **FEAT**: always call gtk_window_set_title in yaru_window_set_title.

#### `yaru_window_manager` - `v0.1.2+1`

- **FIX**: `_handleClose` conditioned to the state stream (#31).
- **FIX**(yaru_window_manager): remove linux from the list of platforms (#24).

#### `yaru_window_platform_interface` - `v0.1.2+1`

- **FIX**(linux): wire up YaruWindow.onClose with didRequestAppExit() (#35).

4 changes: 4 additions & 0 deletions packages/yaru_window/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.2.1+1

- Update a dependency to the latest release.

## [0.2.1](https://github.com/ubuntu/yaru_window.dart/compare/yaru_window-v0.2.0...yaru_window-v0.2.1) (2024-02-16)

* update yaru window linux dep by @Feichtmeier in https://github.com/ubuntu/yaru_window.dart/pull/45
Expand Down
2 changes: 1 addition & 1 deletion packages/yaru_window/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies:
sdk: flutter
handy_window: ^0.4.0
yaru: ^5.2.0
yaru_window: ^0.2.1
yaru_window: ^0.2.1+1

dev_dependencies:
flutter_test:
Expand Down
10 changes: 5 additions & 5 deletions packages/yaru_window/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: yaru_window
description: Provides API for interacting with top-level windows.
repository: https://github.com/ubuntu/yaru_window.dart
issue_tracker: https://github.com/ubuntu/yaru_window.dart/issues
version: 0.2.1
version: 0.2.1+1

environment:
sdk: ">=3.1.0 <4.0.0"
Expand All @@ -11,10 +11,10 @@ environment:
dependencies:
flutter:
sdk: flutter
yaru_window_linux: ^0.2.0
yaru_window_manager: ^0.1.2
yaru_window_platform_interface: ^0.1.2
yaru_window_web: ^0.0.3
yaru_window_linux: ^0.2.1
yaru_window_manager: ^0.1.2+1
yaru_window_platform_interface: ^0.1.2+1
yaru_window_web: ^0.0.3+1

dev_dependencies:
flutter_test:
Expand Down
5 changes: 5 additions & 0 deletions packages/yaru_window_linux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.2.1

- **FIX**(linux): wire up YaruWindow.onClose with didRequestAppExit() (#35).
- **FEAT**: always call gtk_window_set_title in yaru_window_set_title.

## 0.1.3

- Remove `delete-event` handler in favor of `didRequestAppExit()` (#35)
Expand Down
2 changes: 1 addition & 1 deletion packages/yaru_window_linux/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: yaru_window_linux
description: A Linux implementation of yaru_window.
repository: https://github.com/ubuntu/yaru_window.dart
issue_tracker: https://github.com/ubuntu/yaru_window.dart/issues
version: 0.2.0
version: 0.2.1

environment:
sdk: ">=3.1.0 <4.0.0"
Expand Down
5 changes: 5 additions & 0 deletions packages/yaru_window_manager/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.1.2+1

- **FIX**: `_handleClose` conditioned to the state stream (#31).
- **FIX**(yaru_window_manager): remove linux from the list of platforms (#24).

## 0.1.2

- fix: `_handleClose` conditioned to the state stream (#31)
Expand Down
4 changes: 2 additions & 2 deletions packages/yaru_window_manager/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: |
A window_manager -based implementation of yaru_window for macOS and Windows.
repository: https://github.com/ubuntu/yaru_window.dart
issue_tracker: https://github.com/ubuntu/yaru_window.dart/issues
version: 0.1.2
version: 0.1.2+1

environment:
sdk: ">=3.1.0 <4.0.0"
Expand All @@ -15,7 +15,7 @@ dependencies:
flutter_web_plugins:
sdk: flutter
window_manager: ^0.4.2
yaru_window_platform_interface: ^0.1.2
yaru_window_platform_interface: ^0.1.2+1

dev_dependencies:
flutter_test:
Expand Down
4 changes: 4 additions & 0 deletions packages/yaru_window_platform_interface/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.1.2+1

- **FIX**(linux): wire up YaruWindow.onClose with didRequestAppExit() (#35).

## 0.1.2

- Wire up YaruWindow.onClose with didRequestAppExit() (#35)
Expand Down
2 changes: 1 addition & 1 deletion packages/yaru_window_platform_interface/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: yaru_window_platform_interface
description: A common platform interface for yaru_window
repository: https://github.com/ubuntu/yaru_window.dart
issue_tracker: https://github.com/ubuntu/yaru_window.dart/issues
version: 0.1.2
version: 0.1.2+1

environment:
sdk: ">=3.1.0 <4.0.0"
Expand Down
4 changes: 4 additions & 0 deletions packages/yaru_window_web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.0.3+1

- Update a dependency to the latest release.

## 0.0.3

- Migrate to Flutter 3.10 and Dart 3.0.
Expand Down
4 changes: 2 additions & 2 deletions packages/yaru_window_web/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: yaru_window_web
description: A stub implementation of yaru_window for Web.
repository: https://github.com/ubuntu/yaru_window.dart
issue_tracker: https://github.com/ubuntu/yaru_window.dart/issues
version: 0.0.3
version: 0.0.3+1

environment:
sdk: ">=3.1.0 <4.0.0"
Expand All @@ -13,7 +13,7 @@ dependencies:
sdk: flutter
flutter_web_plugins:
sdk: flutter
yaru_window_platform_interface: ^0.1.2
yaru_window_platform_interface: ^0.1.2+1

dev_dependencies:
ubuntu_lints: ^0.4.0
Expand Down

0 comments on commit 7ad47ea

Please sign in to comment.