Skip to content
Snippets Groups Projects
Unverified Commit 85e54efa authored by paz's avatar paz
Browse files

Version 0.2.0 (README, gems, ...)

parent d139a642
No related branches found
No related merge requests found
......@@ -7,6 +7,17 @@ The format of this file is based on [Keep a Changelog](http://keepachangelog.com
## Unreleased
## [0.2.0] / 2024-03-08
### Changed
* Make the error message if a resource could not be found a little friendlier.
* If a key file given to `lists new` does not exist, don't create the list in the first place.
* For each imported key show a key summary, not just the fingerprint (if provided by the API daemon, which it will do/does from version 5.0.0 on).
* Update the gem "thor" to version 1.0.
* Use "base64" as gem if Ruby is v3.3 (or later), because in v3.4 it's being removed from the standard library.
### Fixed
* Fix compatibility with ruby 3.0 by changing how values are escaped.
......
......@@ -18,15 +18,15 @@ Requirements
Installation
------------
1. Download [the gem](https://0xacab.org/schleuder/schleuder-cli/raw/main/gems/schleuder-cli-0.1.0.gem) and [the OpenPGP-signature](https://0xacab.org/schleuder/schleuder-cli/raw/main/gems/schleuder-cli-0.1.0.gem.sig) and verify:
1. Download [the gem](https://0xacab.org/schleuder/schleuder-cli/raw/main/gems/schleuder-cli-0.2.0.gem) and [the OpenPGP-signature](https://0xacab.org/schleuder/schleuder-cli/raw/main/gems/schleuder-cli-0.2.0.gem.sig) and verify:
```
gpg --recv-key 0xB3D190D5235C74E1907EACFE898F2C91E2E6E1F3
gpg --verify schleuder-cli-0.1.0.gem.sig
gpg --verify schleuder-cli-0.2.0.gem.sig
```
2. If all went well install the gem:
```
gem install schleuder-cli-0.1.0.gem
gem install schleuder-cli-0.2.0.gem
```
You probably want to install [schleuder](https://0xacab.org/schleuder/schleuder), too. Without schleuder, this software is very useless.
......@@ -108,4 +108,4 @@ bundle exec rspec
Alternative Download
--------------------
Alternatively to the gem-files you can download the latest release as [a tarball](https://0xacab.org/schleuder/schleuder-cli/raw/main/gems/schleuder-cli-0.1.0.tar.gz) and [its OpenPGP-signature](https://0xacab.org/schleuder/schleuder-cli/raw/main/gems/schleuder-cli-0.1.0.tar.gz.sig).
Alternatively to the gem-files you can download the latest release as [a tarball](https://0xacab.org/schleuder/schleuder-cli/raw/main/gems/schleuder-cli-0.2.0.tar.gz) and [its OpenPGP-signature](https://0xacab.org/schleuder/schleuder-cli/raw/main/gems/schleuder-cli-0.2.0.tar.gz.sig).
File added
File added
File added
File added
module SchleuderCli
VERSION = '0.1.0'
VERSION = '0.2.0'
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment