Skip to content

Commit

Permalink
Bump dependency versions, create release
Browse files Browse the repository at this point in the history
  • Loading branch information
jhpratt committed Mar 16, 2021
1 parent 55eba04 commit cdd615d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ Versioning].

---

## 0.2.26 [2021-03-16]

### Fixed

- #316, where the build script was wrongly unable to determine the correct compiler version
- Dependencies have been bumped to the latest patch version, ensuring compatibility.

## 0.2.25 [2021-01-24]

### Fixed
Expand Down
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "time"
version = "0.2.25"
version = "0.2.26"
authors = ["Jacob Pratt <the.z.cuber@gmail.com>"]
edition = "2018"
repository = "https://github.com/time-rs/time"
Expand All @@ -26,28 +26,28 @@ std = ["libc", "winapi", "stdweb", "standback/std"]

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

[workspace]
members = ["time-macros", "time-macros-impl"]

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

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

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

[build-dependencies]
version_check = "0.9"
version_check = "0.9.2"

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

0 comments on commit cdd615d

Please sign in to comment.