From 8293000edf6ba20daabbe44c5f119b1ae0e76cdf Mon Sep 17 00:00:00 2001 From: Aaron Clarke Date: Fri, 27 Aug 2021 15:17:39 -0700 Subject: [PATCH] [pigeon] updated to 1.0.0 --- packages/pigeon/CHANGELOG.md | 2 +- packages/pigeon/lib/generator_tools.dart | 2 +- packages/pigeon/pubspec.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/pigeon/CHANGELOG.md b/packages/pigeon/CHANGELOG.md index 3a821753f257..3df6e604f548 100644 --- a/packages/pigeon/CHANGELOG.md +++ b/packages/pigeon/CHANGELOG.md @@ -1,4 +1,4 @@ -## NEXT +## 1.0.0 * Started allowing primitive data types as arguments and return types. * Generics support. diff --git a/packages/pigeon/lib/generator_tools.dart b/packages/pigeon/lib/generator_tools.dart index d5bc4d1047d5..2d43a98de4f4 100644 --- a/packages/pigeon/lib/generator_tools.dart +++ b/packages/pigeon/lib/generator_tools.dart @@ -8,7 +8,7 @@ import 'dart:mirrors'; import 'ast.dart'; /// The current version of pigeon. This must match the version in pubspec.yaml. -const String pigeonVersion = '0.3.0'; +const String pigeonVersion = '1.0.0'; /// Read all the content from [stdin] to a String. String readStdin() { diff --git a/packages/pigeon/pubspec.yaml b/packages/pigeon/pubspec.yaml index 24aa261d16cf..c26a45381839 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/master/packages/pigeon issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3Apigeon -version: 0.3.0 # This must match the version in lib/generator_tools.dart +version: 1.0.0 # This must match the version in lib/generator_tools.dart environment: sdk: '>=2.12.0 <3.0.0'