summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
3 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6809071..9b4ad43 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,11 @@
# 0.6.0
-* add chrono as an optional feature [#190](https://github.com/softprops/shiplift/pull/190)
+* add chrono as an optional feature, enabled by default [#190](https://github.com/softprops/shiplift/pull/190)
+* introduce new `vendored-ssl` cargo feature flag enabling the open ssl's crates `vendored` feature [#197](https://github.com/softprops/shiplift/pull/197)
+* added publish method to expose a port [#198](https://github.com/softprops/shiplift/pull/198)
+* replace host str to use https if encrypted [#193](https://github.com/softprops/shiplift/pull/193)
+* added image tag feature [#187](https://github.com/softprops/shiplift/pull/187)
+* added image import feature [#165](https://github.com/softprops/shiplift/pull/165)
# 0.5.0
diff --git a/Cargo.toml b/Cargo.toml
index 7439937..a550b43 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "shiplift"
-version = "0.5.1"
+version = "0.6.0"
authors = ["softprops <d.tangren@gmail.com>"]
description = "A Rust interface for maneuvering Docker containers"
documentation = "https://docs.rs/shiplift"
diff --git a/README.md b/README.md
index 21acffc..90899fe 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ Add the following to your `Cargo.toml` file
```toml
[dependencies]
-shiplift = "0.5"
+shiplift = "0.6"
```
## usage