Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
This change bumps the version of the crate to 0.2.0. The following
notable changes have been made since 0.1.3:
- Use the nitrokey crate for the 'open', 'close', and 'status'
  commands instead of directly communicating with the Nitrokey device
  - Added nitrokey version 0.2.1 as a direct dependency and
    nitrokey-sys version 3.4.1 as well as rand version 0.4.3 as
    indirect dependencies
  - Removed the hid, hidapi-sys and pkg-config dependencies
- Added the 'otp' command for working with one-time passwords
- Added the 'config' command for reading and writing the device configuration
- Added the 'pin' command for managing PINs
  - Renamed the 'clear' command to 'pin clear'
- Moved 'open' and 'close' commands as subcommands into newly introduced
  'storage' command
  - Moved printing of storage related information from 'status' command
    into new 'storage status' subcommand
- Made 'status' command work with Nitrokey Pro devices
- Enabled CI pipeline comprising code style conformance checks, linting,
  and building of the project
- Added badges indicating pipeline status, current crates.io published
  version of the crate, and minimum version of rustc required
- Fixed wrong messages in the pinentry dialog that were caused by unescaped
  spaces in a string
- Use the argparse crate to parse the command-line arguments
  - Added argparse dependency in version 0.2.2
  • Loading branch information
d-e-s-o committed Jan 2, 2019
1 parent a98e417 commit 696d9fb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions nitrocli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unreleased
----------
0.2.0
-----
- Use the `nitrokey` crate for the `open`, `close`, and `status`
commands instead of directly communicating with the Nitrokey device
- Added `nitrokey` version `0.2.1` as a direct dependency and
Expand Down
2 changes: 1 addition & 1 deletion nitrocli/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions nitrocli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Cargo.toml

#/***************************************************************************
# * Copyright (C) 2017-2018 Daniel Mueller ([email protected]) *
# * Copyright (C) 2017-2019 Daniel Mueller ([email protected]) *
# * *
# * This program is free software: you can redistribute it and/or modify *
# * it under the terms of the GNU General Public License as published by *
Expand All @@ -19,7 +19,7 @@

[package]
name = "nitrocli"
version = "0.1.3"
version = "0.2.0"
edition = "2018"
authors = ["Daniel Mueller <[email protected]>"]
license = "GPL-3.0+"
Expand Down

0 comments on commit 696d9fb

Please sign in to comment.