Skip to content

Commit

Permalink
Bump log
Browse files Browse the repository at this point in the history
  • Loading branch information
lawliet89 committed Mar 18, 2020
1 parent d829301 commit 172f423
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## 0.5.2 (2020-XX-XX)
## 0.5.2 (2020-03-18)

### Improvements

Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rocket_cors"
version = "0.5.1"
version = "0.5.2"
license = "MIT/Apache-2.0"
authors = ["Yong Wen Chua <[email protected]>"]
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
Expand All @@ -23,7 +23,7 @@ serialization = ["serde", "serde_derive", "unicase_serde"]
[dependencies]
regex = "1.1"
rocket = { version = "0.4.2", default-features = false }
log = "0.3"
log = "0.4"
unicase = "2.0"
url = "2.1.0"

Expand Down
2 changes: 1 addition & 1 deletion src/fairing.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Fairing implementation
use ::log::{error, info, log};
use ::log::{error, info};
use rocket::http::{self, uri::Origin, Status};
use rocket::{self, error_, info_, log_, Outcome, Request};

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ use std::marker::PhantomData;
use std::ops::Deref;
use std::str::FromStr;

use ::log::{debug, error, info, log};
use ::log::{debug, error, info};
use regex::RegexSet;
use rocket::http::{self, Status};
use rocket::request::{FromRequest, Request};
Expand Down

0 comments on commit 172f423

Please sign in to comment.