Skip to content

Commit e93c7a2

Browse files
authored
Merge pull request #19 from jwodder/renovate/lock-file-maintenance
[cargo] Autoupdate Cargo.lock
2 parents c56ff92 + bf7bc8d commit e93c7a2

File tree

5 files changed

+29
-25
lines changed

5 files changed

+29
-25
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.3.0 (in development)
2+
-----------------------
3+
- Increased MSRV to 1.85
4+
15
v0.2.1 (2024-07-25)
26
-------------------
37
- Changed the receiver of `InPlace::open()` from `&mut self` to `&self`

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[package]
22
name = "in-place"
3-
version = "0.2.1"
4-
edition = "2021"
5-
rust-version = "1.74"
3+
version = "0.3.0-dev"
4+
edition = "2024"
5+
rust-version = "1.85"
66
description = "In-place file processing"
77
authors = ["John Thorvald Wodder II <in-place-rs@varonathe.org>"]
88
repository = "https://github.com/jwodder/in-place-rs"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
22
[![CI Status](https://github.com/jwodder/in-place-rs/actions/workflows/test.yml/badge.svg)](https://github.com/jwodder/in-place-rs/actions/workflows/test.yml)
33
[![codecov.io](https://codecov.io/gh/jwodder/in-place-rs/branch/master/graph/badge.svg)](https://codecov.io/gh/jwodder/in-place-rs)
4-
[![Minimum Supported Rust Version](https://img.shields.io/badge/MSRV-1.74-orange)](https://www.rust-lang.org)
4+
[![Minimum Supported Rust Version](https://img.shields.io/badge/MSRV-1.85-orange)](https://www.rust-lang.org)
55
[![MIT License](https://img.shields.io/github/license/jwodder/in-place-rs.svg)](https://opensource.org/licenses/MIT)
66

77
[GitHub](https://github.com/jwodder/in-place-rs) | [crates.io](https://crates.io/crates/in-place) | [Documentation](https://docs.rs/in-place) | [Issues](https://github.com/jwodder/in-place-rs/issues) | [Changelog](https://github.com/jwodder/in-place-rs/blob/master/CHANGELOG.md)

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
use std::error;
7070
use std::ffi::OsString;
7171
use std::fmt;
72-
use std::fs::{metadata, rename, symlink_metadata, File};
72+
use std::fs::{File, metadata, rename, symlink_metadata};
7373
use std::io;
7474
use std::path::{Path, PathBuf};
7575
use tempfile::{Builder, NamedTempFile, PersistError};

0 commit comments

Comments
 (0)