Skip to content

Commit a48b77d

Browse files
Release 3.0.0
1 parent 0406697 commit a48b77d

File tree

9 files changed

+12
-10
lines changed

9 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [3.0.0] - 2025-02-20
810
:warning: Major version!
911
### Breaking Changes
1012
- Renamed `BluebirdContactReader` to `BluebirdSamReader`
@@ -81,7 +83,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8183
## [1.0.0] - 2020-12-18
8284
This is the initial release.
8385

84-
[unreleased]: https://github.com/calypsonet/keyple-plugin-cna-bluebird-specific-nfc-java-lib/compare/2.1.4...HEAD
86+
[unreleased]: https://github.com/calypsonet/keyple-plugin-cna-bluebird-specific-nfc-java-lib/compare/3.0.0...HEAD
87+
[3.0.0]: https://github.com/calypsonet/keyple-plugin-cna-bluebird-specific-nfc-java-lib/compare/2.1.4...3.0.0
8588
[2.1.4]: https://github.com/calypsonet/keyple-plugin-cna-bluebird-specific-nfc-java-lib/compare/2.1.3...2.1.4
8689
[2.1.3]: https://github.com/calypsonet/keyple-plugin-cna-bluebird-specific-nfc-java-lib/compare/2.1.2...2.1.3
8790
[2.1.2]: https://github.com/calypsonet/keyple-plugin-cna-bluebird-specific-nfc-java-lib/compare/2.1.1...2.1.2
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Package org.calypsonet.keyple.plugin.bluebird
2+
3+
This document is the specification of the API dedicated to the integration of the Android Bluebird plugin in a Android Keyple Application.

bluebird-plugin-mock/src/main/kotlin/org/calypsonet/keyple/plugin/bluebird/BluebirdConstants.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
*
1010
* SPDX-License-Identifier: EPL-2.0
1111
************************************************************************************** */
12-
package org.calypsonet.keypl
12+
package org.calypsonet.keyple.plugin.bluebird
1313

1414
/**
15-
* Constants for the Android NFC plugin.
15+
* Constants for the Bluebird plugin.
1616
*
1717
* @since 3.0.0
1818
*/

bluebird-plugin/src/main/kotlin/org/calypsonet/keyple/plugin/bluebird/BluebirdCardReaderAdapter.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ import com.bluebird.extnfc.ExtNfcReader
2222
import com.bluebird.extnfc.ExtNfcReader.ResultCode
2323
import kotlinx.coroutines.delay
2424
import kotlinx.coroutines.runBlocking
25-
import org.calypsonet.keypl.BluebirdConstants
2625
import org.eclipse.keyple.core.plugin.CardIOException
2726
import org.eclipse.keyple.core.plugin.CardInsertionWaiterAsynchronousApi
2827
import org.eclipse.keyple.core.plugin.spi.reader.ConfigurableReaderSpi

bluebird-plugin/src/main/kotlin/org/calypsonet/keyple/plugin/bluebird/BluebirdConstants.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
*
1010
* SPDX-License-Identifier: EPL-2.0
1111
************************************************************************************** */
12-
package org.calypsonet.keypl
12+
package org.calypsonet.keyple.plugin.bluebird
1313

1414
/**
15-
* Constants for the Android NFC plugin.
15+
* Constants for the Bluebird plugin.
1616
*
1717
* @since 3.0.0
1818
*/

bluebird-plugin/src/main/kotlin/org/calypsonet/keyple/plugin/bluebird/BluebirdPluginAdapter.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
package org.calypsonet.keyple.plugin.bluebird
1313

1414
import android.app.Activity
15-
import org.calypsonet.keypl.BluebirdConstants
1615
import org.eclipse.keyple.core.plugin.spi.PluginSpi
1716
import org.eclipse.keyple.core.plugin.spi.reader.ReaderSpi
1817

bluebird-plugin/src/main/kotlin/org/calypsonet/keyple/plugin/bluebird/BluebirdPluginFactoryAdapter.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
package org.calypsonet.keyple.plugin.bluebird
1313

1414
import android.app.Activity
15-
import org.calypsonet.keypl.BluebirdConstants
1615
import org.eclipse.keyple.core.common.CommonApiProperties
1716
import org.eclipse.keyple.core.plugin.PluginApiProperties
1817
import org.eclipse.keyple.core.plugin.spi.PluginFactorySpi

bluebird-plugin/src/main/kotlin/org/calypsonet/keyple/plugin/bluebird/BluebirdSamReaderAdapter.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import android.os.HandlerThread
1616
import android.os.Message
1717
import com.bluebird.payment.sam.SamInterface
1818
import kotlinx.coroutines.*
19-
import org.calypsonet.keypl.BluebirdConstants
2019
import org.eclipse.keyple.core.plugin.CardIOException
2120
import org.eclipse.keyple.core.plugin.spi.reader.ReaderSpi
2221
import org.eclipse.keyple.core.util.HexUtil

example-app/src/main/kotlin/org/calypsonet/keyple/plugin/bluebird/example/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ import androidx.recyclerview.widget.RecyclerView
2525
import kotlinx.coroutines.CoroutineScope
2626
import kotlinx.coroutines.Dispatchers
2727
import kotlinx.coroutines.launch
28-
import org.calypsonet.keypl.BluebirdConstants
2928
import org.calypsonet.keyple.plugin.bluebird.*
29+
import org.calypsonet.keyple.plugin.bluebird.BluebirdConstants
3030
import org.calypsonet.keyple.plugin.bluebird.example.MessageDisplayAdapter.Message
3131
import org.calypsonet.keyple.plugin.bluebird.example.MessageDisplayAdapter.MessageType
3232
import org.calypsonet.keyple.plugin.bluebird.example.databinding.ActivityMainBinding

0 commit comments

Comments
 (0)