Skip to content

Commit

Permalink
chore(crate): bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
CompeyDev committed May 12, 2024
1 parent ddd6ed6 commit 5be5d28
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[package]
name = "chrono_lc"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
authors = ["Alessandro Pellizzari <[email protected]>", "Erica Marigold <[email protected]>"]
authors = [
"Alessandro Pellizzari <[email protected]>",
"Erica Marigold <[email protected]>",
]
description = "Localised date and time formatting library for Rust, based on chrono"
homepage = "https://github.com/0x5eal/chrono-locale"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Include the dependency in `Cargo.toml`:
```toml
[dependencies]
chrono = "0.4"
chrono_lc = "0.1.5"
chrono_lc = "0.1.6"
```

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

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
//! ```toml
//! [dependencies]
//! chrono = "0.4"
//! chrono_lc = "0.1.5"
//! chrono_lc = "0.1.6"
//! ```
//!
//! Then put this in your `lib.rs` or `main.rs`:
Expand Down

0 comments on commit 5be5d28

Please sign in to comment.