Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump iOS and Android to v1.9.50 #6340

Merged
merged 1 commit into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,34 @@ and this project adheres to [Semantic Versioning](http://semver.org/)

### Fixed

## [1.9.49] (https://github.com/rainbow-me/rainbow/releases/tag/v1.9.49)

### Added

- Claim as X (#6193)
- NFT checker 2.0 (#6293)
- Added support for inkchain (#6323)

### Changed

- Improved nonce management logic for private mempool handling (#6277)
- Split e2e into parallel and serial flows to improve CI runs (#6317)
- Browser animation code cleanup (#6306)
- Converted network accessors to functions (#6219)
- Bumped nanoid from 3.3.7 to 3.3.8 in /src/design-system/docs (#6320)
- Updated default currentNonce value to -1 (#6324)
- Updated trending tokens query to support backend changes (#6312)
- Replaced node ack retires with a small delay (#6326)
- Updated swaps sdk (#6327)

### Fixed

- Fixed an issue with SignTransactionSheet not disabling button on authorization (#6242)
- Fixed an issue where the sticky header on the wallet screen couldn’t be tapped when scrolled down the page (#6309)
- Fixed a duplicate wallet initialization issue where initializeWallet was being called multiple times (#6310)
- Fixed an issue where the wallet height calculation caused a break in the wallet switcher list with wallets up to two accounts (#6315)
- Fixed a crash on develop regarding TextShadow (#6329)

## [1.9.48] (https://github.com/rainbow-me/rainbow/releases/tag/v1.9.48)

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,8 @@ android {
applicationId "me.rainbow"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 242
versionName "1.9.49"
versionCode 243
versionName "1.9.50"
missingDimensionStrategy 'react-native-camera', 'general'
renderscriptTargetApi 23
renderscriptSupportModeEnabled true
Expand Down
8 changes: 4 additions & 4 deletions ios/Rainbow.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -1883,7 +1883,7 @@
"$(PROJECT_DIR)",
);
LLVM_LTO = YES;
MARKETING_VERSION = 1.9.49;
MARKETING_VERSION = 1.9.50;
OTHER_CFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
Expand Down Expand Up @@ -1951,7 +1951,7 @@
"$(PROJECT_DIR)",
);
LLVM_LTO = YES;
MARKETING_VERSION = 1.9.49;
MARKETING_VERSION = 1.9.50;
OTHER_CFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
Expand Down Expand Up @@ -2072,7 +2072,7 @@
"$(PROJECT_DIR)",
);
LLVM_LTO = YES;
MARKETING_VERSION = 1.9.49;
MARKETING_VERSION = 1.9.50;
OTHER_CFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
Expand Down Expand Up @@ -2192,7 +2192,7 @@
"$(PROJECT_DIR)",
);
LLVM_LTO = YES;
MARKETING_VERSION = 1.9.49;
MARKETING_VERSION = 1.9.50;
OTHER_CFLAGS = "$(inherited)";
OTHER_LDFLAGS = (
"$(inherited)",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Rainbow",
"version": "1.9.49-1",
"version": "1.9.50-1",
"private": true,
"scripts": {
"setup": "yarn graphql-codegen:install && yarn ds:install && yarn allow-scripts && yarn graphql-codegen && yarn fetch:networks",
Expand Down
Loading