diff --git a/CHANGELOG.md b/CHANGELOG.md index 908b7c2ddcb..1636e3a8653 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,38 @@ and this project adheres to [Semantic Versioning](http://semver.org/) ### Fixed +## [1.9.47] (https://github.com/rainbow-me/rainbow/releases/tag/v1.9.47) + +### Added + +- Added react-native-turbo-haptics on both OS's (#6264) +- Added trending tokens query (#6288) +- Implemented active tab flag for dapp browser (#6279) +- Added translations for claimables, DeFi Positions, WC loading state and swaps v2 bridging (#6295) +- Added more analytics events for token details, erc20s and nfts (#6287) +- Added ability to deeplink to swaps (#6178) + +### Changed + +- Replaced custom native review module with expo-store-review (#6268) +- Updated mobile app's id'ing number of wallets to match BX (#6278) +- Dapp Browser upgrades (#6269, #6300) +- Enable third party defi positions & fix token list exclusion logic (#6299) + +### Fixed + +- Fixed a crash that would happen when attempting to swap tokens with 0 decimals (#6263) +- Fixed app store deep links in dapp browser (#6267) +- Fixed address searches on discover screen (#6272) +- Fixed wallet telemetry identify for analytics (#6258) +- Fixed a bug where users weren't able to open points breakdown from points screen (#6284) +- Fixed an issue where we showed NaN wallet balance (#6283) +- We now use MMKVObject initial value which fixes the empty default object being recreated (#6290) +- Fixed the issue where we weren't showing the ledger pairing sheet during swaps confirmation (#6275) +- Fixed build failures by using appstore connect key for CI (#6294) +- Fixed a race condition where the wallet list would be static and users couldn't scroll (#6286) +- Fixed lp badge gradient overflow and android shadows (#6296) + ## [1.9.46] (https://github.com/rainbow-me/rainbow/releases/tag/v1.9.46) ### Changed diff --git a/android/app/build.gradle b/android/app/build.gradle index 7dc564ab243..90a6b3c5d3a 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 240 - versionName "1.9.47" + versionCode 241 + versionName "1.9.48" missingDimensionStrategy 'react-native-camera', 'general' renderscriptTargetApi 23 renderscriptSupportModeEnabled true diff --git a/ios/Rainbow.xcodeproj/project.pbxproj b/ios/Rainbow.xcodeproj/project.pbxproj index da6540f510b..640ae34c446 100644 --- a/ios/Rainbow.xcodeproj/project.pbxproj +++ b/ios/Rainbow.xcodeproj/project.pbxproj @@ -1875,7 +1875,7 @@ "$(PROJECT_DIR)", ); LLVM_LTO = YES; - MARKETING_VERSION = 1.9.47; + MARKETING_VERSION = 1.9.48; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = ( "$(inherited)", @@ -1943,7 +1943,7 @@ "$(PROJECT_DIR)", ); LLVM_LTO = YES; - MARKETING_VERSION = 1.9.47; + MARKETING_VERSION = 1.9.48; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = ( "$(inherited)", @@ -2064,7 +2064,7 @@ "$(PROJECT_DIR)", ); LLVM_LTO = YES; - MARKETING_VERSION = 1.9.47; + MARKETING_VERSION = 1.9.48; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = ( "$(inherited)", @@ -2184,7 +2184,7 @@ "$(PROJECT_DIR)", ); LLVM_LTO = YES; - MARKETING_VERSION = 1.9.47; + MARKETING_VERSION = 1.9.48; OTHER_CFLAGS = "$(inherited)"; OTHER_LDFLAGS = ( "$(inherited)", diff --git a/package.json b/package.json index f7dc00dcd64..27fe5141866 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "Rainbow", - "version": "1.9.47-1", + "version": "1.9.48-1", "private": true, "scripts": { "setup": "yarn graphql-codegen:install && yarn ds:install && yarn allow-scripts && yarn graphql-codegen && yarn fetch:networks",