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

Merge release 1.8.0 #349

Merged
merged 5 commits into from
Nov 20, 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
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.8.0] - 2024-11-20

### Added

- Ability to reveal the wallet private key (seed) if the seed phrase can't be revealed

## [1.7.0] - 2024-07-31

### Added

- Deprecation notice. This wallet is going away soon,
move your account to the new CryptoX wallet to continue using Concordium.
- Ability to reveal the wallet private key (seed) if the seed phrase can't be revealed

## [1.6.0] - 2024-06-26

Expand Down Expand Up @@ -130,7 +135,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Last release without changelog.

[Unreleased]: https://github.com/Concordium/concordium-reference-wallet-android/compare/1.6.0...HEAD
[Unreleased]: https://github.com/Concordium/concordium-reference-wallet-android/compare/1.8.0...HEAD

[1.8.0]: https://github.com/Concordium/concordium-reference-wallet-android/compare/1.7.0...1.8.0

[1.7.0]: https://github.com/Concordium/concordium-reference-wallet-android/compare/1.6.0...1.7.0

[1.6.0]: https://github.com/Concordium/concordium-reference-wallet-android/compare/1.5.1...1.6.0

Expand Down
7 changes: 2 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ tasks.withType(Test) {
}

def versionBuildNumberMajor = 1
def versionBuildNumberMinor = 7
def versionBuildNumberMinor = 8
def versionBuildNumberPatch = 0
def versionBuildNumberMeta = ""
def versionBuildNumberSequential = 78
def versionBuildNumberSequential = 80

task printVersionName {
doLast {
Expand Down Expand Up @@ -338,7 +338,6 @@ dependencies {

// Barcode
implementation 'com.google.android.gms:play-services-vision:20.1.3'
implementation 'com.google.android.gms:play-services-vision:20.1.3'

// Chrome custom tabs
implementation 'androidx.browser:browser:1.5.0'
Expand Down Expand Up @@ -400,7 +399,5 @@ dependencies {
def nav_version = "2.5.3"
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
implementation "androidx.navigation:navigation-dynamic-features-fragment:$nav_version"
androidTestImplementation "androidx.navigation:navigation-testing:$nav_version"
implementation "androidx.navigation:navigation-compose:$nav_version"
}
Loading