Skip to content

Commit 1688ef4

Browse files
committed
preparing v0.4.1 release
1 parent 40171f2 commit 1688ef4

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 0.4.1
2+
- Second release candidate.
3+
14
### 0.4.0
25
- Release candidate.
36

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ruddr"
3-
version = "0.4.0"
3+
version = "0.4.1"
44
edition = "2024"
55
authors = ["Matthew Schuchard"]
66
description = "A lightweight Ruddr SDK Rust crate"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
Please see the official Rust [crate documentation page](https://docs.rs/ruddr) for usage.
55

6-
This crate is currently released as beta.
6+
This crate is currently published as a release candidate.

src/model/types.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ impl Date {
2121
if date_validator.is_match(&date) {
2222
Ok(Date(date))
2323
} else {
24-
Err(format!("invalid date format: {date}"))
24+
Err(format!("invalid date: {date}"))
2525
}
2626
}
2727
}

0 commit comments

Comments
 (0)