Skip to content

Commit b45f017

Browse files
committed
Prepare new release
1 parent b8fa330 commit b45f017

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.2.3] - 2023-10-23
99

1010
### Changed
1111

@@ -41,7 +41,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4141

4242
- Initial commit.
4343

44-
[Unreleased]: https://github.com/daxpedda/web-time/compare/v0.2.2...HEAD
44+
[Unreleased]: https://github.com/daxpedda/web-time/compare/v0.2.3...HEAD
45+
[0.2.3]: https://github.com/daxpedda/web-time/compare/v0.2.2...v0.2.3
4546
[0.2.2]: https://github.com/daxpedda/web-time/compare/v0.2.1...v0.2.2
4647
[0.2.1]: https://github.com/daxpedda/web-time/compare/v0.2.0...v0.2.1
4748
[0.2.0]: https://github.com/daxpedda/web-time/compare/v0.1.0...v0.2.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "MIT OR Apache-2.0"
99
name = "web-time"
1010
repository = "https://github.com/daxpedda/web-time"
1111
rust-version = "1.60"
12-
version = "0.2.2"
12+
version = "0.2.3"
1313

1414
[target.'cfg(all(target_family = "wasm", not(any(target_os = "emscripten", target_os = "wasi"))))'.dependencies]
1515
js-sys = "0.3.20"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ submitted for inclusion in the work by you, as defined in the Apache-2.0
101101
license, shall be dual licensed as above, without any additional terms or
102102
conditions.
103103

104-
[CHANGELOG]: https://github.com/daxpedda/web-time/blob/v0.2.2/CHANGELOG.md
105-
[CONTRIBUTING]: https://github.com/daxpedda/web-time/blob/v0.2.2/CONTRIBUTING.md
106-
[LICENSE-MIT]: https://github.com/daxpedda/web-time/blob/v0.2.2/LICENSE-MIT
107-
[LICENSE-APACHE]: https://github.com/daxpedda/web-time/blob/v0.2.2/LICENSE-APACHE
104+
[CHANGELOG]: https://github.com/daxpedda/web-time/blob/v0.2.3/CHANGELOG.md
105+
[CONTRIBUTING]: https://github.com/daxpedda/web-time/blob/v0.2.3/CONTRIBUTING.md
106+
[LICENSE-MIT]: https://github.com/daxpedda/web-time/blob/v0.2.3/LICENSE-MIT
107+
[LICENSE-APACHE]: https://github.com/daxpedda/web-time/blob/v0.2.3/LICENSE-APACHE
108108
[`Date.now()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now
109109
[`Instant`]: https://doc.rust-lang.org/std/time/struct.Instant.html
110110
[`Instant::now()`]: https://doc.rust-lang.org/std/time/struct.Instant.html#method.now

src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,10 @@
9393
//! license, shall be dual licensed as above, without any additional terms or
9494
//! conditions.
9595
//!
96-
//! [CHANGELOG]: https://github.com/daxpedda/web-time/blob/v0.2.2/CHANGELOG.md
97-
//! [CONTRIBUTING]: https://github.com/daxpedda/web-time/blob/v0.2.2/CONTRIBUTING.md
98-
//! [LICENSE-MIT]: https://github.com/daxpedda/web-time/blob/v0.2.2/LICENSE-MIT
99-
//! [LICENSE-APACHE]: https://github.com/daxpedda/web-time/blob/v0.2.2/LICENSE-APACHE
96+
//! [CHANGELOG]: https://github.com/daxpedda/web-time/blob/v0.2.3/CHANGELOG.md
97+
//! [CONTRIBUTING]: https://github.com/daxpedda/web-time/blob/v0.2.3/CONTRIBUTING.md
98+
//! [LICENSE-MIT]: https://github.com/daxpedda/web-time/blob/v0.2.3/LICENSE-MIT
99+
//! [LICENSE-APACHE]: https://github.com/daxpedda/web-time/blob/v0.2.3/LICENSE-APACHE
100100
//! [`Date.now()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now
101101
//! [`Instant`]: https://doc.rust-lang.org/std/time/struct.Instant.html
102102
//! [`Instant::now()`]: https://doc.rust-lang.org/std/time/struct.Instant.html#method.now

0 commit comments

Comments
 (0)