From 0ebd8cfc36db7f20621cd3c5f45ad4c50525e65e Mon Sep 17 00:00:00 2001 From: nesquikm Date: Mon, 13 Nov 2023 18:18:21 +0000 Subject: [PATCH] chore(release): publish packages - flutter_nekoton_bridge@1.27.0 - nekoton_bridge@1.19.0 - flutter_nekoton_bridge_example@1.17.2 --- CHANGELOG.md | 33 +++++++++++++++++++ packages/flutter_nekoton_bridge/CHANGELOG.md | 4 +++ .../android/CMakeLists.txt | 2 +- .../example/CHANGELOG.md | 4 +++ .../example/pubspec.yaml | 2 +- .../ios/flutter_nekoton_bridge.podspec | 2 +- .../linux/CMakeLists.txt | 2 +- .../macos/flutter_nekoton_bridge.podspec | 2 +- packages/flutter_nekoton_bridge/pubspec.yaml | 4 +-- .../windows/CMakeLists.txt | 2 +- packages/nekoton_bridge/CHANGELOG.md | 4 +++ packages/nekoton_bridge/pubspec.yaml | 2 +- 12 files changed, 54 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17281721..78ebf020 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,39 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## 2023-11-13 + +### Changes + +--- + +Packages with breaking changes: + + - There are no breaking changes in this release. + +Packages with other changes: + + - [`flutter_nekoton_bridge` - `v1.27.0`](#flutter_nekoton_bridge---v1270) + - [`nekoton_bridge` - `v1.19.0`](#nekoton_bridge---v1190) + - [`flutter_nekoton_bridge_example` - `v1.17.2`](#flutter_nekoton_bridge_example---v1172) + +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. + + - `flutter_nekoton_bridge_example` - `v1.17.2` + +--- + +#### `flutter_nekoton_bridge` - `v1.27.0` + + - **FEAT**: add stacktrace to LogEntry ([#236](https://github.com/broxus/nekoton_bridge/issues/236)). ([50a639eb](https://github.com/broxus/nekoton_bridge/commit/50a639eb385edf49c03d3249f8858fd2daff9983)) + +#### `nekoton_bridge` - `v1.19.0` + + - **FEAT**: add stacktrace to LogEntry ([#236](https://github.com/broxus/nekoton_bridge/issues/236)). ([50a639eb](https://github.com/broxus/nekoton_bridge/commit/50a639eb385edf49c03d3249f8858fd2daff9983)) + + ## 2023-11-12 ### Changes diff --git a/packages/flutter_nekoton_bridge/CHANGELOG.md b/packages/flutter_nekoton_bridge/CHANGELOG.md index bcb966f0..0dc20a13 100644 --- a/packages/flutter_nekoton_bridge/CHANGELOG.md +++ b/packages/flutter_nekoton_bridge/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.27.0 + + - **FEAT**: add stacktrace to LogEntry ([#236](https://github.com/broxus/nekoton_bridge/issues/236)). ([50a639eb](https://github.com/broxus/nekoton_bridge/commit/50a639eb385edf49c03d3249f8858fd2daff9983)) + ## 1.26.1 - **FIX**: add codeHash to contract ([#234](https://github.com/broxus/nekoton_bridge/issues/234)). ([911aec9c](https://github.com/broxus/nekoton_bridge/commit/911aec9c87c07f43a1ec597f437c87b7132168e8)) diff --git a/packages/flutter_nekoton_bridge/android/CMakeLists.txt b/packages/flutter_nekoton_bridge/android/CMakeLists.txt index 9708165f..c518f065 100644 --- a/packages/flutter_nekoton_bridge/android/CMakeLists.txt +++ b/packages/flutter_nekoton_bridge/android/CMakeLists.txt @@ -1,4 +1,4 @@ -set(LibraryVersion "nekoton_bridge-v1.18.1") # generated; do not edit +set(LibraryVersion "nekoton_bridge-v1.19.0") # generated; do not edit # Unlike the Windows & Linux CMakeLists.txt, this Android equivalent is just here # to download the Android binaries into src/main/jniLibs/ and does not build anything. diff --git a/packages/flutter_nekoton_bridge/example/CHANGELOG.md b/packages/flutter_nekoton_bridge/example/CHANGELOG.md index b089b85f..30695b28 100644 --- a/packages/flutter_nekoton_bridge/example/CHANGELOG.md +++ b/packages/flutter_nekoton_bridge/example/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.17.2 + + - Update a dependency to the latest release. + ## 1.17.1 - Update a dependency to the latest release. diff --git a/packages/flutter_nekoton_bridge/example/pubspec.yaml b/packages/flutter_nekoton_bridge/example/pubspec.yaml index 187ecd99..be74c0dd 100644 --- a/packages/flutter_nekoton_bridge/example/pubspec.yaml +++ b/packages/flutter_nekoton_bridge/example/pubspec.yaml @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html # In Windows, build-name is used as the major, minor, and patch parts # of the product and file versions while build-number is used as the build suffix. -version: 1.17.1 +version: 1.17.2 environment: sdk: '>=3.0.0 <4.0.0' diff --git a/packages/flutter_nekoton_bridge/ios/flutter_nekoton_bridge.podspec b/packages/flutter_nekoton_bridge/ios/flutter_nekoton_bridge.podspec index a33b0561..73bfec25 100644 --- a/packages/flutter_nekoton_bridge/ios/flutter_nekoton_bridge.podspec +++ b/packages/flutter_nekoton_bridge/ios/flutter_nekoton_bridge.podspec @@ -1,4 +1,4 @@ -release_tag_name = 'nekoton_bridge-v1.18.1' # generated; do not edit +release_tag_name = 'nekoton_bridge-v1.19.0' # generated; do not edit # # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html. # # Run `pod lib lint flutter_nekoton_bridge.podspec` to validate before publishing. # # diff --git a/packages/flutter_nekoton_bridge/linux/CMakeLists.txt b/packages/flutter_nekoton_bridge/linux/CMakeLists.txt index b044312e..8c805064 100644 --- a/packages/flutter_nekoton_bridge/linux/CMakeLists.txt +++ b/packages/flutter_nekoton_bridge/linux/CMakeLists.txt @@ -1,4 +1,4 @@ -set(LibraryVersion "nekoton_bridge-v1.18.1") # generated; do not edit +set(LibraryVersion "nekoton_bridge-v1.19.0") # generated; do not edit # # installed. You should not increase this version, as doing so will cause # # the plugin to fail to compile for some customers of the plugin. # cmake_minimum_required(VERSION 3.10) diff --git a/packages/flutter_nekoton_bridge/macos/flutter_nekoton_bridge.podspec b/packages/flutter_nekoton_bridge/macos/flutter_nekoton_bridge.podspec index a33b0561..73bfec25 100644 --- a/packages/flutter_nekoton_bridge/macos/flutter_nekoton_bridge.podspec +++ b/packages/flutter_nekoton_bridge/macos/flutter_nekoton_bridge.podspec @@ -1,4 +1,4 @@ -release_tag_name = 'nekoton_bridge-v1.18.1' # generated; do not edit +release_tag_name = 'nekoton_bridge-v1.19.0' # generated; do not edit # # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html. # # Run `pod lib lint flutter_nekoton_bridge.podspec` to validate before publishing. # # diff --git a/packages/flutter_nekoton_bridge/pubspec.yaml b/packages/flutter_nekoton_bridge/pubspec.yaml index 52ddf144..258ae14a 100644 --- a/packages/flutter_nekoton_bridge/pubspec.yaml +++ b/packages/flutter_nekoton_bridge/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_nekoton_bridge description: Flutter Nekoton bridge. -version: 1.26.1 +version: 1.27.0 homepage: https://github.com/broxus/nekoton_bridge.git repository: https://github.com/broxus/nekoton_bridge.git @@ -16,7 +16,7 @@ dependencies: reflectable: ^4.0.5 money2_improver: ^1.3.1 money2: ^4.0.0 - nekoton_bridge: ^1.18.1 + nekoton_bridge: ^1.19.0 freezed_annotation: ^2.4.1 json_annotation: ^4.8.1 # for generating mirror hash diff --git a/packages/flutter_nekoton_bridge/windows/CMakeLists.txt b/packages/flutter_nekoton_bridge/windows/CMakeLists.txt index 3470fa4c..3084cae3 100644 --- a/packages/flutter_nekoton_bridge/windows/CMakeLists.txt +++ b/packages/flutter_nekoton_bridge/windows/CMakeLists.txt @@ -1,4 +1,4 @@ -set(LibraryVersion "nekoton_bridge-v1.18.1") # generated; do not edit +set(LibraryVersion "nekoton_bridge-v1.19.0") # generated; do not edit # # installed that includes CMake 3.14 or later. You should not increase this # # version, as doing so will cause the plugin to fail to compile for some # # customers of the plugin. diff --git a/packages/nekoton_bridge/CHANGELOG.md b/packages/nekoton_bridge/CHANGELOG.md index ff048ad1..30ca5d2e 100644 --- a/packages/nekoton_bridge/CHANGELOG.md +++ b/packages/nekoton_bridge/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.19.0 + + - **FEAT**: add stacktrace to LogEntry ([#236](https://github.com/broxus/nekoton_bridge/issues/236)). ([50a639eb](https://github.com/broxus/nekoton_bridge/commit/50a639eb385edf49c03d3249f8858fd2daff9983)) + ## 1.18.1 - **FIX**: add codeHash to contract ([#234](https://github.com/broxus/nekoton_bridge/issues/234)). ([911aec9c](https://github.com/broxus/nekoton_bridge/commit/911aec9c87c07f43a1ec597f437c87b7132168e8)) diff --git a/packages/nekoton_bridge/pubspec.yaml b/packages/nekoton_bridge/pubspec.yaml index 5c3c39be..b5e284a9 100644 --- a/packages/nekoton_bridge/pubspec.yaml +++ b/packages/nekoton_bridge/pubspec.yaml @@ -1,6 +1,6 @@ name: nekoton_bridge description: Nekoton bridge -version: 1.18.1 +version: 1.19.0 homepage: https://github.com/broxus/nekoton_bridge.git repository: https://github.com/broxus/nekoton_bridge.git