aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2020-01-14 17:45:06 +0100
committerRobin Krahl <robin.krahl@ireas.org>2020-01-14 18:03:16 +0100
commit43664ca3c449008e2859feb94e3142db3fa98625 (patch)
treecae2b5f81bb1245caef37cba80f934878978878c
parent1bc96cf8391977358f77741c63298894f52b7aff (diff)
downloadnitrokey-rs-43664ca3c449008e2859feb94e3142db3fa98625.tar.gz
nitrokey-rs-43664ca3c449008e2859feb94e3142db3fa98625.tar.bz2
Release v0.5.0v0.5.0
This release adds support for these Nitrokey commands: For all devices: - Listing the connected devices and connecting to one of them (list_devices and Manager::connect_path). - Querying the status of a Nitrokey device (Device::get_status). For the Nitrokey Storage: - Getting the SD card usage (Storage::get_sd_card_usage). - Getting the status of a background operation (Storage::get_operation_status). - Filling the SD card with random data (Storage::fill_sd_card). With this release, we support all functions provided by libnitrokey – except those listed as unsupported in the readme file. Therefore we should be able to release a stable version 1.0.0 soon.
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 06836d9..54ee7d3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,7 +3,7 @@ Copyright (C) 2019-2020 Robin Krahl <robin.krahl@ireas.org>
SPDX-License-Identifier: CC0-1.0
-->
-# Unreleased
+# v0.5.0 (2020-01-14)
- List these libnitrokey functions as unsupported:
- `NK_change_firmware_password_pro`
- `NK_connect_with_ID`
diff --git a/Cargo.toml b/Cargo.toml
index b57591b..727d47c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,7 +3,7 @@
[package]
name = "nitrokey"
-version = "0.4.0"
+version = "0.5.0"
authors = ["Robin Krahl <robin.krahl@ireas.org>"]
edition = "2018"
homepage = "https://code.ireas.org/nitrokey-rs/"