Skip to content

Commit e8f0aac

Browse files
committed
Prepare new release
1 parent 821a55d commit e8f0aac

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.4] - 2023-12-24
99

1010
### Added
1111
- Added `web` module containing a platform-specific extension trait to
@@ -50,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5050
- Initial commit.
5151

5252

53-
[Unreleased]: https://github.com/daxpedda/web-time/compare/v0.2.3...HEAD
53+
[Unreleased]: https://github.com/daxpedda/web-time/compare/v0.2.4...HEAD
54+
[0.2.4]: https://github.com/daxpedda/web-time/compare/v0.2.3...v0.2.4
5455
[0.2.3]: https://github.com/daxpedda/web-time/compare/v0.2.2...v0.2.3
5556
[0.2.2]: https://github.com/daxpedda/web-time/compare/v0.2.1...v0.2.2
5657
[0.2.1]: https://github.com/daxpedda/web-time/compare/v0.2.0...v0.2.1

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.3"
12+
version = "0.2.4"
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.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
104+
[CHANGELOG]: https://github.com/daxpedda/web-time/blob/v0.2.4/CHANGELOG.md
105+
[CONTRIBUTING]: https://github.com/daxpedda/web-time/blob/v0.2.4/CONTRIBUTING.md
106+
[LICENSE-MIT]: https://github.com/daxpedda/web-time/blob/v0.2.4/LICENSE-MIT
107+
[LICENSE-APACHE]: https://github.com/daxpedda/web-time/blob/v0.2.4/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.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
96+
//! [CHANGELOG]: https://github.com/daxpedda/web-time/blob/v0.2.4/CHANGELOG.md
97+
//! [CONTRIBUTING]: https://github.com/daxpedda/web-time/blob/v0.2.4/CONTRIBUTING.md
98+
//! [LICENSE-MIT]: https://github.com/daxpedda/web-time/blob/v0.2.4/LICENSE-MIT
99+
//! [LICENSE-APACHE]: https://github.com/daxpedda/web-time/blob/v0.2.4/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)