Skip to content

Commit

Permalink
Release v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
flosse committed Mar 13, 2023
1 parent ef537e7 commit 4820603
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.9.0 (2023-03-13)

- use `parking_lot`
- use `tempfile`

## v0.8.0 (2022-11-16)

- Update `uuid` to v1.x
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "jfs"
version = "0.8.0"
version = "0.9.0"
authors = ["Markus Kohlhase <[email protected]>"]
license = "MIT/Apache-2.0"
homepage = "https://github.com/flosse/rust-json-file-store"
Expand All @@ -13,12 +13,12 @@ categories = ["database"]
edition = "2021"

[dependencies]
log = "0.4"
fs2 = "0.4"
uuid = { version = "1", features = ["v4"] }
log = "0.4"
parking_lot = "0.12.1"
serde = "1"
serde_json = "1"
parking_lot = "0.12.1"
uuid = { version = "1", features = ["v4"] }

[dev-dependencies]
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016 - 2022 Markus Kohlhase
Copyright (c) 2016 - 2023 Markus Kohlhase

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ See [docs.rs/jfs](https://docs.rs/jfs/).

## License

Copyright (c) 2016 - 2022 Markus Kohlhase
Copyright (c) 2016 - 2023 Markus Kohlhase

This library is licensed under either of

Expand Down

0 comments on commit 4820603

Please sign in to comment.