diff --git a/CHANGELOG.md b/CHANGELOG.md index 88df208b..f20f3d8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.3.2] - 2024-11-27 + +### Fixed + +- Crash on launch when Google Play Services is disabled +- Inconsistent transaction fee for invoke smart contract +- Crashing when first launching the app offline +- Not receiving CIS-2 transaction notifications when they are disabled for CCD transactions + ## [1.3.1] - 2024-11-07 ### Fixed @@ -125,7 +134,9 @@ attributes - CIS-2 tokens with corrupted or missing metadata can no longer be added -[Unreleased]: https://github.com/Concordium/cryptox-android/compare/1.3.1...HEAD +[Unreleased]: https://github.com/Concordium/cryptox-android/compare/1.3.2...HEAD + +[1.3.2]: https://github.com/Concordium/cryptox-android/compare/1.3.1...1.3.2 [1.3.1]: https://github.com/Concordium/cryptox-android/compare/1.3.0...1.3.1 diff --git a/app/build.gradle b/app/build.gradle index 3745760d..d24f5632 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -21,9 +21,9 @@ android { // https://semver.org/ def versionMajor = 1 def versionMinor = 3 - def versionPatch = 1 + def versionPatch = 2 def versionMeta = "" - def versionCodeIncremental = 1409 + def versionCodeIncremental = 1416 compileSdkVersion 34