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 versions to v1.9.22 #5634

Merged
merged 1 commit into from
Apr 18, 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.21] (https://github.com/rainbow-me/rainbow/releases/tag/v1.9.21)

### Added

- Added support for other native currencies in transaction simulation sheet (#5585)
- implement gas estimations for swaps v2 (#5526)
- Add token search logic and ability to select assets for swaps v2 (#5547)
- Added warning for when price impact is unknown (#5597)
- Added a warning when user attempts to send to contract address (#5586)
- Added support for Degen chain (#5621)

### Changed

- Updated audit for dependencies (#5594, #5615, #5624)
- Bumped swaps SDK (#5583)
- Improved type checking and error handling on web preferences (#5607)
- Updated e2e test suite (#5558)
- Updated transaction request analytic events (#5589)
- Cleaned up file imports and duplicate types for swaps v2 (#5619)
- Improved Wallet Connect flow and added performance tracking (#5616)

### Fixed

- Fixed an issue with scrolltoindex firing on the last card dismissal (#5606)
- Fixed a bug where some NFTs won’t show up in wallet (#5537)
- Fixed an bug where non backed up wallets would show as backed up under certain conditions (#5593)
- Fixed dapp metadata issues regarding Zora mints (#5584)

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

### Added
Expand Down
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,8 @@ android {
applicationId "me.rainbow"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 209
versionName "1.9.21"
versionCode 210
versionName "1.9.22"
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 @@ -1517,7 +1517,7 @@
"$(PROJECT_DIR)",
);
LLVM_LTO = YES;
MARKETING_VERSION = 1.9.21;
MARKETING_VERSION = 1.9.22;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
OTHER_LDFLAGS = (
Expand Down Expand Up @@ -1579,7 +1579,7 @@
"$(PROJECT_DIR)",
);
LLVM_LTO = YES;
MARKETING_VERSION = 1.9.21;
MARKETING_VERSION = 1.9.22;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
OTHER_LDFLAGS = (
Expand Down Expand Up @@ -1686,7 +1686,7 @@
"$(PROJECT_DIR)",
);
LLVM_LTO = YES;
MARKETING_VERSION = 1.9.21;
MARKETING_VERSION = 1.9.22;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
OTHER_LDFLAGS = (
Expand Down Expand Up @@ -1794,7 +1794,7 @@
"$(PROJECT_DIR)",
);
LLVM_LTO = YES;
MARKETING_VERSION = 1.9.21;
MARKETING_VERSION = 1.9.22;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(OTHER_CFLAGS)";
OTHER_LDFLAGS = (
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.21-1",
"version": "1.9.22-1",
"private": true,
"scripts": {
"setup": "yarn install && yarn graphql-codegen:install && yarn ds:install && yarn allow-scripts && yarn postinstall && yarn graphql-codegen",
Expand Down
Loading