Skip to content

Commit cdd615d

Browse files
committed
Bump dependency versions, create release
1 parent 55eba04 commit cdd615d

File tree

2 files changed

+19
-12
lines changed

2 files changed

+19
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ Versioning].
77

88
---
99

10+
## 0.2.26 [2021-03-16]
11+
12+
### Fixed
13+
14+
- #316, where the build script was wrongly unable to determine the correct compiler version
15+
- Dependencies have been bumped to the latest patch version, ensuring compatibility.
16+
1017
## 0.2.25 [2021-01-24]
1118

1219
### Fixed

Cargo.toml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "time"
3-
version = "0.2.25"
3+
version = "0.2.26"
44
authors = ["Jacob Pratt <[email protected]>"]
55
edition = "2018"
66
repository = "https://github.com/time-rs/time"
@@ -26,28 +26,28 @@ std = ["libc", "winapi", "stdweb", "standback/std"]
2626

2727
[dependencies]
2828
const_fn = "0.4.2"
29-
rand = { version = "0.7", optional = true, default-features = false }
30-
serde = { version = "1", optional = true, default-features = false, features = ["derive"] }
31-
standback = { version = "0.2.5", default-features = false }
32-
time-macros = { version = "0.1", path = "time-macros" }
29+
rand = { version = "0.7.3", optional = true, default-features = false }
30+
serde = { version = "1.0.124", optional = true, default-features = false, features = ["derive"] }
31+
standback = { version = "0.2.15", default-features = false }
32+
time-macros = { version = "0.1.1", path = "time-macros" }
3333

3434
[workspace]
3535
members = ["time-macros", "time-macros-impl"]
3636

3737
[target.'cfg(unix)'.dependencies]
38-
libc = { version = "0.2", optional = true }
38+
libc = { version = "0.2.89", optional = true }
3939

4040
[target.'cfg(windows)'.dependencies]
41-
winapi = { version = "0.3", features = ["minwinbase", "minwindef", "timezoneapi"], optional = true }
41+
winapi = { version = "0.3.9", features = ["minwinbase", "minwindef", "timezoneapi"], optional = true }
4242

4343
[target.'cfg(target_arch = "wasm32")'.dependencies]
44-
stdweb = { version = "0.4", default-features = false, optional = true }
44+
stdweb = { version = "0.4.20", default-features = false, optional = true }
4545

4646
[build-dependencies]
47-
version_check = "0.9"
47+
version_check = "0.9.2"
4848

4949
[dev-dependencies]
50-
rand = { version = "0.7", default-features = false }
51-
serde_json = "1"
52-
standback = "0.2"
50+
rand = { version = "0.7.3", default-features = false }
51+
serde_json = "1.0.64"
52+
standback = "0.2.15"
5353
time-macros = { path = "time-macros" }

0 commit comments

Comments
 (0)