Skip to content

Commit

Permalink
feat: upgrade dependencies (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanpierrefortune authored Sep 20, 2024
1 parent 00cebd8 commit 179c818
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/java-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository code from ${{ github.repository }}/${{ github.ref }}
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'adopt'
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ 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/).

## [Unreleased]
### Fixed
- Android client build.
### Upgraded
- Keyple components
- keyple-service-java-lib `3.2.1` -> `3.3.1`
- keyple-distributed-network-java-lib `2.3.1` -> `2.5.1`
- keyple-distributed-local-java-lib `2.3.1` -> `2.5.1`
- keyple-card-calypso-java-lib `3.1.1` -> `3.1.3`

## [2024.04.23]
### Upgraded
Expand Down
10 changes: 5 additions & 5 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ android {
minSdk = 24
//noinspection ExpiredTargetSdkVersion
targetSdk = 31
versionCode = 6
versionName = project.version.toString()
versionCode = versionName!!.replace(".", "").toIntOrNull() ?: 1
}

buildTypes {
getByName("release") {
isMinifyEnabled = true // Enables code shrinking for the release build type.
isMinifyEnabled = false // Disables code shrinking for the release build type.
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
Expand Down Expand Up @@ -128,9 +128,9 @@ dependencies {
implementation("org.eclipse.keypop:keypop-calypso-crypto-legacysam-java-api:0.6.0")
implementation("org.eclipse.keyple:keyple-common-java-api:2.0.1")
implementation("org.eclipse.keyple:keyple-util-java-lib:2.4.0")
implementation("org.eclipse.keyple:keyple-service-java-lib:3.2.1")
implementation("org.eclipse.keyple:keyple-card-calypso-java-lib:3.1.1")
implementation("org.eclipse.keyple:keyple-card-calypso-crypto-legacysam-java-lib:0.7.0")
implementation("org.eclipse.keyple:keyple-service-java-lib:3.3.1")
implementation("org.eclipse.keyple:keyple-card-calypso-java-lib:3.1.3")
implementation("org.eclipse.keyple:keyple-card-calypso-crypto-legacysam-java-lib:0.8.0")
implementation("org.eclipse.keyple:keyple-plugin-android-nfc-java-lib:2.2.0")
// End Keyple configuration

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 2024.04.23
version = 2024.09.20
archivesBaseName = keyple-android-demo-control

# Project-wide Gradle settings.
Expand Down

0 comments on commit 179c818

Please sign in to comment.