Skip to content

Commit

Permalink
Release 1.0.2: Fix documented MSRV to match actual MSRV.
Browse files Browse the repository at this point in the history
  • Loading branch information
danielparks committed May 24, 2023
1 parent 714c92c commit 8583611
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@

All notable changes to this project will be documented in this file.

## main branch
## Release 1.0.2 (2023-05-24)

* Update documentation to reflect that the minimum supported Rust version
(MSRV) is 1.64.

## Release 1.0.1 (2023-05-24)

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "git-status-vars"
version = "1.0.1"
version = "1.0.2"
authors = ["Daniel Parks <[email protected]>"]
description = "Summarize git repo info into shell variables (for use in a prompt)"
homepage = "https://github.com/danielparks/git-status-vars"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ I have not tested this on large repositories.

[![docs.rs](https://img.shields.io/docsrs/git-status-vars)][docs.rs]
[![Crates.io](https://img.shields.io/crates/v/git-status-vars)][crates.io]
![Rust version 1.60+](https://img.shields.io/badge/Rust%20version-1.60%2B-success)
![Rust version 1.64+](https://img.shields.io/badge/Rust%20version-1.64%2B-success)

I’m not sure how useful it is, but this may be used from other Rust code.

Currently the minimum supported Rust version (MSRV) is **1.60**.
Currently the minimum supported Rust version (MSRV) is **1.64**.

## Development and contributions

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//! The primary entrance to this code is [`summarize_repository()`]. It opens a
//! [`Repository`], then calls [`summarize_opened_repository()`] on it.
//!
//! Currently the minimum supported Rust version (MSRV) is **1.60**.
//! Currently the minimum supported Rust version (MSRV) is **1.64**.
//!
//! # Versioning
//!
Expand Down

0 comments on commit 8583611

Please sign in to comment.