Skip to content

Commit

Permalink
release: 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshstoik1 committed Jul 25, 2023
2 parents 0041087 + 7c6ffaa commit 0e278a3
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
# Changelog


## [0.4.0](https://github.com/Blobfolio/write_atomic/releases/tag/v0.4.0) - 2023-07-24

### Changed

* Bump `tempfile` to `3.7.0`
* Bump `rustix` to `0.38`
* Bump MSRV to `1.63`



## [0.3.2](https://github.com/Blobfolio/write_atomic/releases/tag/v0.3.2) - 2023-06-01

Expand Down
8 changes: 4 additions & 4 deletions CREDITS.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Project Dependencies
Package: write_atomic
Version: 0.3.2
Generated: 2023-06-01 20:13:33 UTC
Version: 0.4.0
Generated: 2023-07-25 04:38:55 UTC

| Package | Version | Author(s) | License |
| ---- | ---- | ---- | ---- |
| [cfg-if](https://github.com/alexcrichton/cfg-if) | 1.0.0 | [Alex Crichton](mailto:[email protected]) | Apache-2.0 or MIT |
| [fastrand](https://github.com/smol-rs/fastrand) | 1.9.0 | [Stjepan Glavina](mailto:[email protected]) | Apache-2.0 or MIT |
| [tempfile](https://github.com/Stebalien/tempfile) | 3.5.0 | [Steven Allen](mailto:[email protected]), The Rust Project Developers, [Ashley Mannix](mailto:[email protected]), and [Jason White](mailto:[email protected]) | Apache-2.0 or MIT |
| [fastrand](https://github.com/smol-rs/fastrand) | 2.0.0 | [Stjepan Glavina](mailto:[email protected]) | Apache-2.0 or MIT |
| [tempfile](https://github.com/Stebalien/tempfile) | 3.7.0 | [Steven Allen](mailto:[email protected]), The Rust Project Developers, [Ashley Mannix](mailto:[email protected]), and [Jason White](mailto:[email protected]) | Apache-2.0 or MIT |
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "write_atomic"
version = "0.3.2"
version = "0.4.0"
authors = ["Blobfolio, LLC. <[email protected]>"]
edition = "2021"
rust-version = "1.56"
rust-version = "1.63"
description = "Write to files atomically."
license = "WTFPL"
repository = "https://github.com/Blobfolio/write_atomic"
Expand All @@ -24,8 +24,8 @@ man-dir = "./"
credits-dir = "./"

[dependencies]
tempfile = "3.5.0"
tempfile = "3.7.0"

[target.'cfg(unix)'.dependencies.rustix]
version = "0.37.1"
version = "0.38"
features = [ "fs", "process" ]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Add `write_atomic` to your `dependencies` in `Cargo.toml`, like:

```
[dependencies]
write_atomic = "0.3.*"
write_atomic = "0.4.*"
```


Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Add `write_atomic` to your `dependencies` in `Cargo.toml`, like:
```text,ignore
[dependencies]
write_atomic = "0.3.*"
write_atomic = "0.4.*"
```
*/
Expand Down

0 comments on commit 0e278a3

Please sign in to comment.