Skip to content

Commit 211f539

Browse files
committed
bump version to 2.0.0
1 parent 4a374ea commit 211f539

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [2.0.0] - Unreleased
6+
57
## [1.2.0] - 2020-04-09
68
### Added
79
- New with LibreSSL 3.1.0: Support for `TLSv1.3`,

examples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ edition = "2018"
88

99
[dev-dependencies]
1010
futures = "0.3.4"
11-
libtls = { path = "../libtls", version = "1.2.0" }
12-
tokio-libtls = { path = "../tokio-libtls", version = "1.2.0" }
11+
libtls = { path = "../libtls", version = "2.0.0" }
12+
tokio-libtls = { path = "../tokio-libtls", version = "2.0.0" }
1313
tokio = { version = "0.2.16", features = ["full"] }
1414

1515
[[example]]

libtls-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 = "libtls-sys"
3-
version = "1.2.0"
3+
version = "2.0.0"
44
authors = ["Reyk Floeter <contact@reykfloeter.com>"]
55
edition = "2018"
66
license = "ISC"

libtls/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libtls"
3-
version = "1.2.0"
3+
version = "2.0.0"
44
authors = ["Reyk Floeter <contact@reykfloeter.com>"]
55
edition = "2018"
66
license = "ISC"
@@ -14,10 +14,10 @@ keywords = ["crypto", "tls", "ssl", "libressl", "openbsd"]
1414
travis-ci = { repository = "reyk/rust-libtls", branch = "master" }
1515

1616
[dependencies]
17-
libtls-sys = { path = "../libtls-sys", version = "1.2.0" }
17+
libtls-sys = { path = "../libtls-sys", version = "2.0.0" }
1818

1919
[dev-dependencies]
2020
rand = "0.7.3"
2121

2222
[build-dependencies]
23-
libtls-sys = { path = "../libtls-sys", version = "1.2.0" }
23+
libtls-sys = { path = "../libtls-sys", version = "2.0.0" }

tokio-libtls/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tokio-libtls"
3-
version = "1.2.0"
3+
version = "2.0.0"
44
authors = ["Reyk Floeter <contact@reykfloeter.com>"]
55
edition = "2018"
66
license = "ISC"
@@ -15,7 +15,7 @@ travis-ci = { repository = "reyk/rust-libtls", branch = "master" }
1515

1616
[dependencies]
1717
futures = "0.3.4"
18-
libtls = { path = "../libtls", version = "1.2.0" }
18+
libtls = { path = "../libtls", version = "2.0.0" }
1919
mio = "0.6.21"
2020
tokio = { version = "0.2.16", features = ["io-driver", "tcp", "time"] }
2121

0 commit comments

Comments
 (0)