File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 1+ ## 22.4.2
2+
3+ * Updates ` README.md ` to replace the deprecated ` flutter pub run pigeon ` command with ` dart run pigeon ` .
4+
15## 22.4.1
26
37* [ dart] Fixes bug where special handling of ints is ignored if no custom types are used.
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ to the api to allow for multiple instances to be created and operate in parallel
86861 ) Make a ".dart" file outside of your "lib" directory for defining the
8787 communication interface.
88881 ) Run pigeon on your ".dart" file to generate the required Dart and
89- host-language code: ` flutter pub get ` then ` flutter pub run pigeon`
89+ host-language code: ` flutter pub get ` then ` dart run pigeon`
9090 with suitable arguments. [ Example] ( ./example/README.md#Invocation ) .
91911 ) Add the generated Dart code to ` ./lib ` for compilation.
92921 ) Implement the host-language code and add it to your build (see below).
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import 'ast.dart';
1414/// The current version of pigeon.
1515///
1616/// This must match the version in pubspec.yaml.
17- const String pigeonVersion = '22.4.1 ' ;
17+ const String pigeonVersion = '22.4.2 ' ;
1818
1919/// Read all the content from [stdin] to a String.
2020String readStdin () {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: pigeon
22description : Code generator tool to make communication between Flutter and the host platform type-safe and easier.
33repository : https://github.com/flutter/packages/tree/main/packages/pigeon
44issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+pigeon%22
5- version : 22.4.1 # This must match the version in lib/generator_tools.dart
5+ version : 22.4.2 # This must match the version in lib/generator_tools.dart
66
77environment :
88 sdk : ^3.3.0
You can’t perform that action at this time.
0 commit comments