Skip to content

Commit 5be5d28

Browse files
committed
chore(crate): bump version
1 parent ddd6ed6 commit 5be5d28

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

Cargo.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "chrono_lc"
3-
version = "0.1.5"
3+
version = "0.1.6"
44
edition = "2021"
5-
authors = ["Alessandro Pellizzari <alex@amiran.it>", "Erica Marigold <hi@devcomp.xyz>"]
5+
authors = [
6+
"Alessandro Pellizzari <alex@amiran.it>",
7+
"Erica Marigold <hi@devcomp.xyz>",
8+
]
69
description = "Localised date and time formatting library for Rust, based on chrono"
710
homepage = "https://github.com/0x5eal/chrono-locale"
811
readme = "README.md"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Include the dependency in `Cargo.toml`:
99
```toml
1010
[dependencies]
1111
chrono = "0.4"
12-
chrono_lc = "0.1.5"
12+
chrono_lc = "0.1.6"
1313
```
1414

1515
Import the required modules into `lib.rs` or `main.rs`:
@@ -19,7 +19,7 @@ use chrono::prelude::*;
1919
use chrono_lc::LocaleDate;
2020
```
2121
> **Note**
22-
> You can choose to import just parts of chrono instead of the whole prelude. Please see ['`chrono`'s documentation](https://docs.rs/chrono/).
22+
> You can choose to import just parts of chrono instead of the whole prelude. Please see [`chrono`'s documentation](https://docs.rs/chrono/).
2323
2424
To format a chrono `Date` or `DateTime` object, you can use the `formatl` method:
2525

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//! ```toml
99
//! [dependencies]
1010
//! chrono = "0.4"
11-
//! chrono_lc = "0.1.5"
11+
//! chrono_lc = "0.1.6"
1212
//! ```
1313
//!
1414
//! Then put this in your `lib.rs` or `main.rs`:

0 commit comments

Comments
 (0)