From af65acdd5d59d291d5061d5191e7525f0d46f88d Mon Sep 17 00:00:00 2001 From: BrodyHughes <41711440+BrodyHughes@users.noreply.github.com> Date: Tue, 19 Nov 2024 13:53:28 -0600 Subject: [PATCH 1/2] bump things --- CHANGELOG.md | 12 ++++++++++++ android/app/build.gradle | 4 ++-- ios/Rainbow.xcodeproj/project.pbxproj | 8 ++++---- package.json | 2 +- 4 files changed, 19 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de0a6b61a23..381c00ab34f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/) ### Fixed +## [1.9.46] (https://github.com/rainbow-me/rainbow/releases/tag/v1.9.46) + +### Changed + +- Remove unused environment configurations (#6254) +- Added a null check guard to the claimable flow (#6257) + +### Fixed + +- Fixed an issue in our approve and swap flow that should help overall swap success (#6259) +- Changed the way we handle flashbots gas so less transactions should fail due to insufficent gas (#6265) + ## [1.9.45] (https://github.com/rainbow-me/rainbow/releases/tag/v1.9.45) ### Added diff --git a/android/app/build.gradle b/android/app/build.gradle index 89ea9e3d1eb..7dc564ab243 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -135,8 +135,8 @@ android { applicationId "me.rainbow" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 239 - versionName "1.9.46" + versionCode 240 + versionName "1.9.47" missingDimensionStrategy 'react-native-camera', 'general' renderscriptTargetApi 23 renderscriptSupportModeEnabled true diff --git a/ios/Rainbow.xcodeproj/project.pbxproj b/ios/Rainbow.xcodeproj/project.pbxproj index 4efa7ebea0f..225651ef199 100644 --- a/ios/Rainbow.xcodeproj/project.pbxproj +++ b/ios/Rainbow.xcodeproj/project.pbxproj @@ -1870,7 +1870,7 @@ "$(PROJECT_DIR)", ); LLVM_LTO = YES; - MARKETING_VERSION = 1.9.46; + MARKETING_VERSION = 1.9.47; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = ( "$(inherited)", @@ -1935,7 +1935,7 @@ "$(PROJECT_DIR)", ); LLVM_LTO = YES; - MARKETING_VERSION = 1.9.46; + MARKETING_VERSION = 1.9.47; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = ( "$(inherited)", @@ -2053,7 +2053,7 @@ "$(PROJECT_DIR)", ); LLVM_LTO = YES; - MARKETING_VERSION = 1.9.46; + MARKETING_VERSION = 1.9.47; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = ( "$(inherited)", @@ -2170,7 +2170,7 @@ "$(PROJECT_DIR)", ); LLVM_LTO = YES; - MARKETING_VERSION = 1.9.46; + MARKETING_VERSION = 1.9.47; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = ( "$(inherited)", diff --git a/package.json b/package.json index bf21af4bac6..c0cc39d6389 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Rainbow", - "version": "1.9.46-1", + "version": "1.9.47-1", "private": true, "scripts": { "setup": "yarn graphql-codegen:install && yarn ds:install && yarn allow-scripts && yarn postinstall && yarn graphql-codegen && yarn fetch:networks", From ae0040b409353afbad252f71a8826fefc12b3b40 Mon Sep 17 00:00:00 2001 From: BrodyHughes <41711440+BrodyHughes@users.noreply.github.com> Date: Wed, 20 Nov 2024 11:15:33 -0600 Subject: [PATCH 2/2] prettier --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 381c00ab34f..908b7c2ddcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,7 +19,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/) ### Changed -- Remove unused environment configurations (#6254) +- Remove unused environment configurations (#6254) - Added a null check guard to the claimable flow (#6257) ### Fixed