diff --git a/CHANGELOG.md b/CHANGELOG.md index c69edf701fcb..ae3887c52231 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [7.74.3] + +### Fixed + +- Fix polymarket adapter contract addresses for Android + ## [7.74.2] ### Fixed @@ -11300,7 +11306,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - [#957](https://github.com/MetaMask/metamask-mobile/pull/957): fix timeouts (#957) - [#954](https://github.com/MetaMask/metamask-mobile/pull/954): Bugfix: onboarding navigation (#954) -[Unreleased]: https://github.com/MetaMask/metamask-mobile/compare/v7.74.2...HEAD +[Unreleased]: https://github.com/MetaMask/metamask-mobile/compare/v7.74.3...HEAD +[7.74.3]: https://github.com/MetaMask/metamask-mobile/compare/v7.74.2...v7.74.3 [7.74.2]: https://github.com/MetaMask/metamask-mobile/compare/v7.74.1...v7.74.2 [7.74.1]: https://github.com/MetaMask/metamask-mobile/compare/v7.74.0...v7.74.1 [7.74.0]: https://github.com/MetaMask/metamask-mobile/compare/v7.73.2...v7.74.0 diff --git a/app/constants/ota.ts b/app/constants/ota.ts index dc51eed00f2b..3b976b1ca9b2 100644 --- a/app/constants/ota.ts +++ b/app/constants/ota.ts @@ -10,7 +10,7 @@ import otaConfig from '../../ota.config.js'; * Reset when releasing a new native build as appropriate for that line. * Kept here (not only in ota.config.js) so changes there do not alter the Expo fingerprint and break CI. */ -export const OTA_VERSION: string = 'v7.74.2'; +export const OTA_VERSION: string = 'v7.74.3'; export const RUNTIME_VERSION = otaConfig.RUNTIME_VERSION; export const PROJECT_ID = otaConfig.PROJECT_ID; export const UPDATE_URL = otaConfig.UPDATE_URL;