Skip to content

Commit 89dca42

Browse files
committed
changelog and version bump
1 parent 5aa3b4e commit 89dca42

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

packages/pigeon/CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
## NEXT
1+
## 10.0.0
22

3+
* [swift] Avoids using `Any` to represent `Optional` in Swift.
4+
* [swift] **Breaking Change** A raw `List` (without generic type argument) in Dart will be
5+
translated into `[Any?]` (rather than `[Any]`) in Swift.
6+
* [swift] **Breaking Change** A raw `Map` (without generic type argument) in Dart will be
7+
translated into `[AnyHashable:Any?]` (rather than `[AnyHashable:Any]`) in Swift.
38
* Adds an example application that uses Pigeon directly, rather than in a plugin.
49

510
## 9.2.5

packages/pigeon/lib/generator_tools.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import 'ast.dart';
1111
/// The current version of pigeon.
1212
///
1313
/// This must match the version in pubspec.yaml.
14-
const String pigeonVersion = '9.2.5';
14+
const String pigeonVersion = '10.0.0';
1515

1616
/// Read all the content from [stdin] to a String.
1717
String readStdin() {

packages/pigeon/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: pigeon
22
description: Code generator tool to make communication between Flutter and the host platform type-safe and easier.
33
repository: https://github.com/flutter/packages/tree/main/packages/pigeon
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3Apigeon
5-
version: 9.2.5 # This must match the version in lib/generator_tools.dart
5+
version: 10.0.0 # This must match the version in lib/generator_tools.dart
66

77
environment:
88
sdk: ">=2.18.0 <4.0.0"

0 commit comments

Comments
 (0)