Skip to content

Commit 822b83e

Browse files
committed
bump pcsc version to 2.8.2, pcsc-sys version to 1.3.0
1 parent 0f5e1e4 commit 822b83e

File tree

4 files changed

+33
-5
lines changed

4 files changed

+33
-5
lines changed

CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# pcsc 2.9.0 (2024-12-14)
2+
3+
- Bump the minimum supported Rust version (MSRV) to 1.56.0 from 1.38.0.
4+
5+
- Update `bitflags` from version 1 to 2. This is a breaking change to the
6+
`State`, `Status` and `Protocols` types, but I tried to keep them compatible
7+
following `bitflags`'s instructions so hopefully it doesn't break any usage
8+
in practice.
9+
10+
- Make `ctl_code` a const fn.
11+
12+
Contributed by Sola.
13+
14+
- Add `Transaction::reconnect()` to allow reconnecting to a card from withing a
15+
transaction.
16+
17+
Contributed by Konrad Vité.
18+
19+
# pcsc-sys 1.3.0 (2024-12-14)
20+
21+
- Bump the minimum supported Rust version (MSRV) to 1.56.0 from 1.38.0.
22+
23+
- Add nicer error message when pcsclite is not found on Linux.
24+
25+
- Make `SCARD_CTL_CODE` a const fn.
26+
27+
Contributed by Sola.
28+
129
# pcsc-sys 1.2.1 (2024-04-18)
230

331
* Fix ``SCardControl`` on mac OS (use the newer ``SCardControl132`` symbol).

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pcsc-sys/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pcsc-sys"
33
description = "Low-level bindings to the PC/SC C API"
4-
version = "1.2.1"
4+
version = "1.3.0"
55
license = "MIT"
66
keywords = ["pcsc", "smartcard"]
77
categories = ["hardware-support", "external-ffi-bindings"]

pcsc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pcsc"
33
description = "Bindings to the PC/SC API for smart card communication"
4-
version = "2.8.2"
4+
version = "2.9.0"
55
license = "MIT"
66
keywords = ["pcsc", "smartcard"]
77
categories = ["hardware-support", "api-bindings"]
@@ -15,4 +15,4 @@ edition = "2021"
1515

1616
[dependencies]
1717
bitflags = "2"
18-
pcsc-sys = { version = "1.2.0", path = "../pcsc-sys" }
18+
pcsc-sys = { version = "1.3.0", path = "../pcsc-sys" }

0 commit comments

Comments
 (0)