chore(release): v0.9.1

Delete debug info from cli in release build.
This commit is contained in:
MedzikUser 2022-09-22 18:59:49 +02:00
parent dd44c5f041
commit a66fea840a
No known key found for this signature in database
GPG Key ID: A5FAC1E185C112DB
4 changed files with 10 additions and 5 deletions

View File

@ -8,6 +8,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
<!-- next-header -->
## [Unreleased]
## [0.9.1] - 2022-09-22
- delete debug info from cli in release build
## [0.9.0] - 2022-09-05
- moved cli to other crate
- added get_album function

4
Cargo.lock generated
View File

@ -851,7 +851,7 @@ dependencies = [
[[package]]
name = "imgurs"
version = "0.9.0"
version = "0.9.1"
dependencies = [
"base64",
"notify-rust",
@ -865,7 +865,7 @@ dependencies = [
[[package]]
name = "imgurs-cli"
version = "0.9.0"
version = "0.9.1"
dependencies = [
"anyhow",
"arboard",

View File

@ -4,7 +4,7 @@ resolver = "2"
[package]
name = "imgurs"
version = "0.9.0"
version = "0.9.1"
description = "API for Imgur"
license = "BSD-3-Clause"
authors = ["MedzikUser <nivua1fn@duck.com>"]

View File

@ -1,6 +1,6 @@
[package]
name = "imgurs-cli"
version = "0.9.0"
version = "0.9.1"
description = "CLI for Imgur"
license = "BSD-3-Clause"
authors = ["MedzikUser <nivua1fn@duck.com>"]
@ -24,9 +24,9 @@ colored = "2.0"
notify-rust = "4.5"
better-panic = "0.3"
dirs = "4.0"
log = "0.4"
simple_logger = "2.3"
toml = "0.5"
log = { version = "0.4", features = ["release_max_level_info"] }
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.21", features = ["macros", "rt-multi-thread"] }
imgurs = { path = "..", version = "0.9.0", features = ["full"] }