From a4fd4cff7591dcb06762d4dbf6800803d6695ea4 Mon Sep 17 00:00:00 2001 From: andrei-cristea Date: Mon, 22 Nov 2021 16:00:43 +0100 Subject: [PATCH] Release 1.0.2 (#12) Closes #11 --- CHANGELOG.md | 8 +++++++- gradle.properties | 2 +- .../terminal/calypso/card/CalypsoCardSelection.java | 2 ++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1a721f..2490813 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.2] - 2021-11-22 +### Deprecated +- `addSuccessfulStatusWord` method (issue [#11]). + ## [1.0.1] - 2021-11-22 ### Added - "CHANGELOG.md" file (issue [#9]). @@ -16,10 +20,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [1.0.0] - 2021-10-06 This is the initial release. -[unreleased]: https://github.com/calypsonet/calypsonet-terminal-calypso-java-api/compare/1.0.1...HEAD +[unreleased]: https://github.com/calypsonet/calypsonet-terminal-calypso-java-api/compare/1.0.2...HEAD +[1.0.2]: https://github.com/calypsonet/calypsonet-terminal-calypso-java-api/compare/1.0.1...1.0.2 [1.0.1]: https://github.com/calypsonet/calypsonet-terminal-calypso-java-api/compare/1.0.0...1.0.1 [1.0.0]: https://github.com/calypsonet/calypsonet-terminal-calypso-java-api/releases/tag/1.0.0 +[#11]: https://github.com/calypsonet/calypsonet-terminal-calypso-java-api/issues/11 [#9]: https://github.com/calypsonet/calypsonet-terminal-calypso-java-api/issues/9 [#7]: https://github.com/calypsonet/calypsonet-terminal-calypso-java-api/issues/7 [#6]: https://github.com/calypsonet/calypsonet-terminal-calypso-java-api/issues/6 \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index e1df479..d0ddc71 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ group = org.calypsonet.terminal title = Calypsonet Terminal Calypso API description = API defining the needed interfaces to manage Calypso cards -version = 1.0.1 +version = 1.0.2 javaSourceLevel = 1.6 javaTargetLevel = 1.6 diff --git a/src/main/java/org/calypsonet/terminal/calypso/card/CalypsoCardSelection.java b/src/main/java/org/calypsonet/terminal/calypso/card/CalypsoCardSelection.java index 31870dc..fa6ffe3 100644 --- a/src/main/java/org/calypsonet/terminal/calypso/card/CalypsoCardSelection.java +++ b/src/main/java/org/calypsonet/terminal/calypso/card/CalypsoCardSelection.java @@ -116,7 +116,9 @@ public interface CalypsoCardSelection extends CardSelection { * @param statusWord A positive int ≤ {@code FFFFh}. * @return The object instance. * @since 1.0.0 + * @deprecated Use {@link #acceptInvalidatedCard()} method instead. */ + @Deprecated CalypsoCardSelection addSuccessfulStatusWord(int statusWord); /**