Skip to content

Commit

Permalink
chore(release): v0.9.1
Browse files Browse the repository at this point in the history
Delete debug info from cli in release build.
  • Loading branch information
M3DZIK committed Sep 22, 2022
1 parent dd44c5f commit a66fea8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions imgurs-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
Expand All @@ -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"] }
Expand Down

0 comments on commit a66fea8

Please sign in to comment.