Skip to content

Commit dfa34aa

Browse files
authored
Merge pull request #400 from broxus/version-bump
chore: version bump
2 parents 40a3f22 + fd60142 commit dfa34aa

File tree

9 files changed

+61
-6
lines changed

9 files changed

+61
-6
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,43 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## 2025-10-06
7+
8+
### Changes
9+
10+
---
11+
12+
Packages with breaking changes:
13+
14+
- There are no breaking changes in this release.
15+
16+
Packages with other changes:
17+
18+
- [`flutter_nekoton_bridge` - `v4.0.0-dev.2`](#flutter_nekoton_bridge---v400-dev2)
19+
- [`flutter_nekoton_bridge_example` - `v3.0.0-dev.2`](#flutter_nekoton_bridge_example---v300-dev2)
20+
- [`nekoton_bridge` - `v4.0.0-dev.2`](#nekoton_bridge---v400-dev2)
21+
22+
---
23+
24+
#### `flutter_nekoton_bridge` - `v4.0.0-dev.2`
25+
26+
- **REFACTOR**: remove redundant json converters.
27+
- **FIX**: change `remainingGasTo` parameter type to `Address`.
28+
- **FEAT**: add support for libraries in local execution and getter functions.
29+
- **FEAT**: add `remainingGasTo` parameter to `prepareTransfer` method in `TokenWallet`.
30+
- **FEAT**: add WalletV5R1 specific methods.
31+
32+
#### `flutter_nekoton_bridge_example` - `v3.0.0-dev.2`
33+
34+
- **FEAT**: add support for libraries in local execution and getter functions.
35+
36+
#### `nekoton_bridge` - `v4.0.0-dev.2`
37+
38+
- **FEAT**: add support for libraries in local execution and getter functions.
39+
- **FEAT**: add `remainingGasTo` parameter to `prepareTransfer` method in `TokenWallet`.
40+
- **FEAT**: add WalletV5R1 specific methods.
41+
42+
643
## 2025-10-02
744

845
### Changes

packages/flutter_nekoton_bridge/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 4.0.0-dev.2
2+
3+
- **REFACTOR**: remove redundant json converters.
4+
- **FIX**: change `remainingGasTo` parameter type to `Address`.
5+
- **FEAT**: add support for libraries in local execution and getter functions.
6+
- **FEAT**: add `remainingGasTo` parameter to `prepareTransfer` method in `TokenWallet`.
7+
- **FEAT**: add WalletV5R1 specific methods.
8+
19
## 4.0.0-dev.1
210

311
> Note: This release has breaking changes.

packages/flutter_nekoton_bridge/android/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(LibraryVersion "nekoton_bridge-v4.0.0-dev.1") # generated; do not edit
1+
set(LibraryVersion "nekoton_bridge-v4.0.0-dev.2") # generated; do not edit
22

33
# Unlike the Windows & Linux CMakeLists.txt, this Android equivalent is just here
44
# to download the Android binaries into src/main/jniLibs/ and does not build anything.

packages/flutter_nekoton_bridge/example/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.0.0-dev.2
2+
3+
- **FEAT**: add support for libraries in local execution and getter functions.
4+
15
## 3.0.0-dev.1
26

37
> Note: This release has breaking changes.

packages/flutter_nekoton_bridge/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1818
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
1919
# In Windows, build-name is used as the major, minor, and patch parts
2020
# of the product and file versions while build-number is used as the build suffix.
21-
version: 3.0.0-dev.1
21+
version: 3.0.0-dev.2
2222

2323
environment:
2424
sdk: ^3.9.0

packages/flutter_nekoton_bridge/ios/flutter_nekoton_bridge.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
release_tag_name = 'nekoton_bridge-v4.0.0-dev.1' # generated; do not edit
1+
release_tag_name = 'nekoton_bridge-v4.0.0-dev.2' # generated; do not edit
22
# # To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html.
33
# # Run `pod lib lint flutter_nekoton_bridge.podspec` to validate before publishing.
44
# #

packages/flutter_nekoton_bridge/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_nekoton_bridge
22
description: Flutter Nekoton bridge.
3-
version: 4.0.0-dev.1
3+
version: 4.0.0-dev.2
44
homepage: https://github.com/broxus/nekoton_bridge.git
55
repository: https://github.com/broxus/nekoton_bridge.git
66
resolution: workspace
@@ -15,7 +15,7 @@ dependencies:
1515
plugin_platform_interface: ^2.1.8
1616
rxdart: ^0.28.0
1717
money2: ^6.0.0
18-
nekoton_bridge: ^4.0.0-dev.1
18+
nekoton_bridge: ^4.0.0-dev.2
1919
freezed_annotation: ^3.1.0
2020
json_annotation: ^4.9.0
2121
crypto: ^3.0.6

packages/nekoton_bridge/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 4.0.0-dev.2
2+
3+
- **FEAT**: add support for libraries in local execution and getter functions.
4+
- **FEAT**: add `remainingGasTo` parameter to `prepareTransfer` method in `TokenWallet`.
5+
- **FEAT**: add WalletV5R1 specific methods.
6+
17
## 4.0.0-dev.1
28

39
> Note: This release has breaking changes.

packages/nekoton_bridge/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: nekoton_bridge
22
description: Nekoton bridge
3-
version: 4.0.0-dev.1
3+
version: 4.0.0-dev.2
44
homepage: https://github.com/broxus/nekoton_bridge.git
55
repository: https://github.com/broxus/nekoton_bridge.git
66
resolution: workspace

0 commit comments

Comments
 (0)