Skip to content

Commit

Permalink
Release version 0.6.0
Browse files Browse the repository at this point in the history
- Avoid String allocations where possible
- Breaking change in the interface due to addition of explicit lifetimes

Thanks go out to @blt and the team at Vector for their contributions!
  • Loading branch information
oceanlewis committed May 14, 2022
1 parent 229f727 commit ad3af40
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "uaparser"
version = "0.5.1"
version = "0.6.0"
description = "A Rust implementation of the UA Parser"
license = "MIT"
authors = ["David Lewis <david@armstronglewis.com>"]
authors = ["David Lewis"]
edition = "2018"

homepage = "https://github.com/davidarmstronglewis/uap-rs"
Expand All @@ -15,11 +15,11 @@ keywords = ["user", "agent", "parser", "uap", "uaparser"]

[dependencies]
lazy_static = "1.4.0"
regex = "1.5.4"
serde = "1.0.110"
serde_yaml = "0.8.12"
serde_derive = "1.0.110"
derive_more = "0.99.7"
regex = "1.5.5"
serde = "1.0.137"
serde_yaml = "0.8.24"
serde_derive = "1.0.137"
derive_more = "0.99.17"

[dev-dependencies]
criterion = "0.3.5"
Expand Down
1 change: 1 addition & 0 deletions nix/shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ mkShell {
extensions = [ "rust-src" ];
})
cargo-criterion
cargo-edit
gnuplot
];
}

0 comments on commit ad3af40

Please sign in to comment.