Skip to content

Commit

Permalink
fix: hex/dec conversion in card checker (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanpierrefortune authored May 13, 2024
1 parent d5c6f74 commit a7dd262
Show file tree
Hide file tree
Showing 9 changed files with 199 additions and 125 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ 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).

## [Unreleased]
### Upgraded
- Keypop Reader API `2.0.0` -> `2.0.1`
- Keypop Calypso Card API `2.0.0` -> `2.1.0`
- Keyple Common API `2.0.0` -> `2.0.1`
- Keyple Util Library `2.3.1` -> `2.4.0`
- Keyple Service Library `3.2.0` -> `3.2.1`
- Keyple Calypso Card Library `3.0.1` -> `3.1.1`
- Keyple Plugin PC/SC Library `2.2.0` -> `2.2.1`
- Gradle `6.8.3` -> `7.6.4`

## [2.0.0] - 2024-04-02
### Changed
Expand Down
16 changes: 8 additions & 8 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
///////////////////////////////////////////////////////////////////////////////
plugins {
java
id("com.diffplug.spotless") version "5.10.2"
id("com.diffplug.spotless") version "6.25.0"
}
buildscript {
repositories {
Expand All @@ -29,13 +29,13 @@ repositories {
}
dependencies {
// Begin Keyple configuration (generated by 'https://keyple.org/components/overview/configuration-wizard/')
implementation("org.eclipse.keypop:keypop-reader-java-api:2.0.0")
implementation("org.eclipse.keypop:keypop-calypso-card-java-api:2.0.0")
implementation("org.eclipse.keyple:keyple-common-java-api:2.0.0")
implementation("org.eclipse.keyple:keyple-util-java-lib:2.3.1")
implementation("org.eclipse.keyple:keyple-service-java-lib:3.2.0")
implementation("org.eclipse.keyple:keyple-card-calypso-java-lib:3.0.1")
implementation("org.eclipse.keyple:keyple-plugin-pcsc-java-lib:2.2.0")
implementation("org.eclipse.keypop:keypop-reader-java-api:2.0.1")
implementation("org.eclipse.keypop:keypop-calypso-card-java-api:2.1.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-plugin-pcsc-java-lib:2.2.1")
// End Keyple configuration
implementation("org.slf4j:slf4j-simple:1.7.32")
implementation("com.google.code.gson:gson:2.8.5")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
group = org.calypsonet.tool
title = Calypso card analyzer
description = Calypso card tools dedicated to file structures analysis.
version = 2.0.0
version = 2.0.1

javaSourceLevel = 1.8
javaTargetLevel = 1.8
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6.4-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit a7dd262

Please sign in to comment.