Skip to content

Commit 18650f6

Browse files
committed
Bump versions for release
- Major version for boring-sys: `PasswordCallback` was removed - Major version for boring: the public `*Ref` types were removed and `foreign-types` appears in our public api and had a major version bump - Patch version for tokio-boring: the only API change was removing the `S: Debug` bound - Patch version for hyper-boring: no API changes, only removed dependencies
1 parent 4442629 commit 18650f6

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

boring-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boring-sys"
3-
version = "1.1.1"
3+
version = "2.0.0"
44
authors = ["Alex Crichton <alex@alexcrichton.com>",
55
"Steven Fackler <sfackler@gmail.com>",
66
"Ivan Nikulin <ifaaan@gmail.com>"]

boring/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "boring"
3-
version = "1.1.6"
3+
version = "2.0.0"
44
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
55
license = "Apache-2.0"
66
description = "BoringSSL bindings"
@@ -16,7 +16,7 @@ bitflags = "1.0"
1616
foreign-types = "0.5"
1717
lazy_static = "1"
1818
libc = "0.2"
19-
boring-sys = { version = "1.1.0", path = "../boring-sys" }
19+
boring-sys = { version = ">=1.1.0,<3.0.0", path = "../boring-sys" }
2020

2121
[dev-dependencies]
2222
hex = "0.4"

hyper-boring/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyper-boring"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
authors = ["Steven Fackler <sfackler@gmail.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
55
edition = "2018"
66
description = "Hyper TLS support via BoringSSL"
@@ -21,7 +21,7 @@ http = "0.2"
2121
hyper = { version = "0.14", default-features = false, features = ["client"] }
2222
linked_hash_set = "0.1"
2323
once_cell = "1.0"
24-
boring = { version = "1.1.0", path = "../boring" }
24+
boring = { version = ">=1.1.0,<3.0.0", path = "../boring" }
2525
tokio = "1"
2626
tokio-boring = { version = "2", path = "../tokio-boring" }
2727
tower-layer = "0.3"

tokio-boring/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-boring"
3-
version = "2.1.3"
3+
version = "2.1.4"
44
authors = ["Alex Crichton <alex@alexcrichton.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
55
license = "MIT/Apache-2.0"
66
edition = "2018"
@@ -12,8 +12,8 @@ An implementation of SSL streams for Tokio backed by BoringSSL
1212
"""
1313

1414
[dependencies]
15-
boring = { version = "1.1.0", path = "../boring" }
16-
boring-sys = { version = "1.1.0", path = "../boring-sys" }
15+
boring = { version = ">=1.1.0,<3.0.0", path = "../boring" }
16+
boring-sys = { version = ">=1.1.0,<3.0.0", path = "../boring-sys" }
1717
tokio = "1"
1818

1919
[dev-dependencies]

0 commit comments

Comments
 (0)