From a43378f62c0304ba4826ca0a31eb2e644d5c23e2 Mon Sep 17 00:00:00 2001 From: Christian Padilla Date: Tue, 28 Nov 2023 10:33:29 -0500 Subject: [PATCH 1/2] [pigeon] Fix pigeon issue_tracker link The current link leads to an empty issues list. --- packages/pigeon/pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pigeon/pubspec.yaml b/packages/pigeon/pubspec.yaml index dcb9487727dd..ce0c604bb130 100644 --- a/packages/pigeon/pubspec.yaml +++ b/packages/pigeon/pubspec.yaml @@ -1,7 +1,7 @@ name: pigeon description: Code generator tool to make communication between Flutter and the host platform type-safe and easier. repository: https://github.com/flutter/packages/tree/main/packages/pigeon -issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3Apigeon +issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+pigeon%22 version: 14.0.0 # This must match the version in lib/generator_tools.dart environment: From 79ece7255f860d6b8d3322eadd4bc94b161a6300 Mon Sep 17 00:00:00 2001 From: tarrinneal Date: Thu, 7 Dec 2023 07:07:53 -0800 Subject: [PATCH 2/2] changelog --- packages/pigeon/CHANGELOG.md | 3 ++- packages/pigeon/lib/generator_tools.dart | 2 +- packages/pigeon/pubspec.yaml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/pigeon/CHANGELOG.md b/packages/pigeon/CHANGELOG.md index d58c78c27e0b..501f6c83dd04 100644 --- a/packages/pigeon/CHANGELOG.md +++ b/packages/pigeon/CHANGELOG.md @@ -1,6 +1,7 @@ -## NEXT +## 14.0.1 * Updates minimum supported SDK version to Flutter 3.10/Dart 3.0. +* Updates issue_tracker link. ## 14.0.0 diff --git a/packages/pigeon/lib/generator_tools.dart b/packages/pigeon/lib/generator_tools.dart index 050bbacb974e..608ba5300013 100644 --- a/packages/pigeon/lib/generator_tools.dart +++ b/packages/pigeon/lib/generator_tools.dart @@ -13,7 +13,7 @@ import 'ast.dart'; /// The current version of pigeon. /// /// This must match the version in pubspec.yaml. -const String pigeonVersion = '14.0.0'; +const String pigeonVersion = '14.0.1'; /// Read all the content from [stdin] to a String. String readStdin() { diff --git a/packages/pigeon/pubspec.yaml b/packages/pigeon/pubspec.yaml index ce0c604bb130..2504ce173195 100644 --- a/packages/pigeon/pubspec.yaml +++ b/packages/pigeon/pubspec.yaml @@ -2,7 +2,7 @@ name: pigeon description: Code generator tool to make communication between Flutter and the host platform type-safe and easier. repository: https://github.com/flutter/packages/tree/main/packages/pigeon issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+pigeon%22 -version: 14.0.0 # This must match the version in lib/generator_tools.dart +version: 14.0.1 # This must match the version in lib/generator_tools.dart environment: sdk: ">=3.0.0 <4.0.0"