Skip to content

Commit

Permalink
release: 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Jul 13, 2023
2 parents 309205f + 3c47821 commit 1ff176f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@



## [0.6.1](https://github.com/Blobfolio/utc2k/releases/tag/v0.6.1) - 2023-07-13

### Changed

* Update dev dependencies



## [0.6.0](https://github.com/Blobfolio/utc2k/releases/tag/v0.6.0) - 2023-06-01

### Changed
Expand Down
4 changes: 2 additions & 2 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Project Dependencies
Package: utc2k
Version: 0.5.15
Generated: 2023-06-01 19:58:37 UTC
Version: 0.6.1
Generated: 2023-07-13 19:17:40 UTC

This package has no dependencies.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "utc2k"
version = "0.6.0"
version = "0.6.1"
authors = ["Blobfolio, LLC. <hello@blobfolio.com>"]
edition = "2021"
rust-version = "1.70"
Expand Down Expand Up @@ -32,7 +32,7 @@ credits-dir = "./"

[dev-dependencies]
brunch = "0.5.*"
fastrand = "1.9.*"
fastrand = "2"
serde = "1.0.*"
serde_json = "1.0.*"

Expand Down
2 changes: 1 addition & 1 deletion src/date/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2125,7 +2125,7 @@ mod tests {
"[year]-[month]-[day] [hour]:[minute]:[second]",
).expect("Unable to parse datetime format.");

let rng = fastrand::Rng::new();
let mut rng = fastrand::Rng::new();
for i in std::iter::repeat_with(|| rng.u32(Utc2k::MIN_UNIXTIME..=Utc2k::MAX_UNIXTIME)).take(SAMPLE_SIZE) {
range_test!(buf, i, format);
}
Expand Down
4 changes: 2 additions & 2 deletions src/serde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ mod tests {

#[test]
fn t_serde_fmtutc2k_rng() {
let rng = fastrand::Rng::new();
let mut rng = fastrand::Rng::new();
for i in std::iter::repeat_with(|| rng.u32(Utc2k::MIN_UNIXTIME..=Utc2k::MAX_UNIXTIME)).take(SAMPLE_SIZE) {
let date = FmtUtc2k::from(i);

Expand All @@ -200,7 +200,7 @@ mod tests {

#[test]
fn t_serde_utc2k_rng() {
let rng = fastrand::Rng::new();
let mut rng = fastrand::Rng::new();
for i in std::iter::repeat_with(|| rng.u32(Utc2k::MIN_UNIXTIME..=Utc2k::MAX_UNIXTIME)).take(SAMPLE_SIZE) {
let date = Utc2k::from(i);

Expand Down

0 comments on commit 1ff176f

Please sign in to comment.