use pretty_env_logger
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Cadey Ratio 2020-08-06 14:53:07 -04:00
parent e3a9f34178
commit e1db8c4df4
5 changed files with 9 additions and 3 deletions

View File

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
## 0.5.1
Initialize `pretty_env_logger` on app boot. Oops.
## 0.5.0
A lot of internals to this program were exposed to external consumers. This was

2
Cargo.lock generated
View File

@ -348,7 +348,7 @@ dependencies = [
[[package]]
name = "gitea-release"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"anyhow",
"comrak",

View File

@ -1,6 +1,6 @@
[package]
name = "gitea-release"
version = "0.5.0"
version = "0.5.1"
authors = ["Christine Dodrill <me@christine.website>"]
edition = "2018"
@ -13,6 +13,7 @@ git2 = "0.13"
http = "0.2"
kankyo = "0.3"
log = "0.4"
pretty_env_logger = "0"
reqwest = { version = "0.10", features = ["json"] }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }

View File

@ -1 +1 @@
0.5.0
0.5.1

View File

@ -6,6 +6,7 @@ use ::gitea_release::{cmd::{self, Cmd}};
#[tokio::main]
async fn main() -> Result<()> {
let _ = kankyo::init();
pretty_env_logger::init();
let cmd = Cmd::from_args();
match cmd {