aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Krahl <robin.krahl@ireas.org>2019-12-16 20:47:49 +0100
committerRobin Krahl <robin.krahl@ireas.org>2019-12-16 20:47:49 +0100
commit0911616ce880538dfa1a2a2977d72bdf7c229967 (patch)
tree12ec2018a23b5f1e95442665dcb912120d1a25a4
parent41cdc1f7091a3c442241dbb2379c50dbcc7e9c5f (diff)
parentf2cc7fdf081340b0b812f0b212537ba2b55d382e (diff)
downloadnitrokey-rs-0911616ce880538dfa1a2a2977d72bdf7c229967.tar.gz
nitrokey-rs-0911616ce880538dfa1a2a2977d72bdf7c229967.tar.bz2
Merge branch 'hotfix-0.3.5'
This patch release changes the nitrokey-sys version specification to fix a compilation error if nitrokey-sys v3.5.0 is selected (which was legal with the previous specification).
-rw-r--r--.builds/archlinux-use-system-lib.yaml6
-rw-r--r--.builds/archlinux.yml6
-rw-r--r--CHANGELOG.md3
-rw-r--r--Cargo.toml4
4 files changed, 7 insertions, 12 deletions
diff --git a/.builds/archlinux-use-system-lib.yaml b/.builds/archlinux-use-system-lib.yaml
index 6fba33a..01705c1 100644
--- a/.builds/archlinux-use-system-lib.yaml
+++ b/.builds/archlinux-use-system-lib.yaml
@@ -5,7 +5,7 @@ packages:
environment:
USE_SYSTEM_LIBNITROKEY: "1"
sources:
- - https://git.sr.ht/~ireas/nitrokey-rs
+ - https://git.ireas.org/nitrokey-rs
tasks:
- build: |
cd nitrokey-rs
@@ -16,7 +16,3 @@ tasks:
- format: |
cd nitrokey-rs
cargo fmt -- --check
-triggers:
- - action: email
- condition: failure
- to: nitrokey-rs-dev <nitrokey-rs-dev@ireas.org>
diff --git a/.builds/archlinux.yml b/.builds/archlinux.yml
index 9d45386..543e93c 100644
--- a/.builds/archlinux.yml
+++ b/.builds/archlinux.yml
@@ -4,7 +4,7 @@ packages:
- hidapi
- gcc
sources:
- - https://git.sr.ht/~ireas/nitrokey-rs
+ - https://git.ireas.org/nitrokey-rs
tasks:
- build: |
cd nitrokey-rs
@@ -15,7 +15,3 @@ tasks:
- format: |
cd nitrokey-rs
cargo fmt -- --check
-triggers:
- - action: email
- condition: failure
- to: nitrokey-rs-dev <nitrokey-rs-dev@ireas.org>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index edc33f6..04da117 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+# v0.3.5 (2019-12-16)
+- Update the nitrokey-sys dependency version specification to ~3.4.
+
# v0.3.4 (2019-01-20)
- Fix authentication methods that assumed that `char` is signed.
diff --git a/Cargo.toml b/Cargo.toml
index 838ab45..238cc02 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "nitrokey"
-version = "0.3.4"
+version = "0.3.5"
authors = ["Robin Krahl <robin.krahl@ireas.org>"]
edition = "2018"
homepage = "https://code.ireas.org/nitrokey-rs/"
@@ -18,7 +18,7 @@ test-storage = []
[dependencies]
libc = "0.2"
-nitrokey-sys = "3.4"
+nitrokey-sys = "~3.4"
rand_core = {version = "0.3", default-features = false}
rand_os = {version = "0.1"}