Skip to content

Commit

Permalink
Bump version to 0.16.0 (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
syncpark authored Feb 19, 2024
1 parent fa52dc9 commit 61e9f18
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ file is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and
this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [0.16.0] - 2024-02-16

### Changed

Expand Down Expand Up @@ -225,6 +225,7 @@ Versioning](https://semver.org/spec/v2.0.0.html).

- Move from giganto

[0.16.0]: https://github.com/aicers/giganto-client/compare/0.15.2...0.16.0
[0.15.2]: https://github.com/aicers/giganto-client/compare/0.15.1...0.15.2
[0.15.1]: https://github.com/aicers/giganto-client/compare/0.15.0...0.15.1
[0.15.0]: https://github.com/aicers/giganto-client/compare/0.14.0...0.15.0
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "giganto-client"
version = "0.15.2"
version = "0.16.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -13,8 +13,8 @@ num_enum = "0.7"
quinn = "0.10"
semver = "1"
serde = { version = "1", features = ["derive"] }
strum = "0.25"
strum_macros = "0.25"
strum = "0.26"
strum_macros = "0.26"
thiserror = "1"
tokio = "1"
tracing = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion src/ingest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ fn as_str_or_default(s: &str) -> &str {
}
}

fn vec_to_string_or_default<T>(vec: &Vec<T>) -> String
fn vec_to_string_or_default<T>(vec: &[T]) -> String
where
T: Display,
{
Expand Down

0 comments on commit 61e9f18

Please sign in to comment.