summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Fay <tom.fay@metaswitch.com>2021-01-19 04:51:39 +0000
committerGitHub <noreply@github.com>2021-01-18 23:51:39 -0500
commite5a9ed1aaff272beee99ad087e17fd9e6644285a (patch)
treed0301343722d704b526d3c5c6f4ffd0e9b0b0736
parent71a2d687187b7cc9f7954cbc041e3dd34349d0aa (diff)
Version and changelog updates for 0.7.0 (#247)
-rw-r--r--CHANGELOG.md14
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
3 files changed, 16 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8e72e8c..225dec7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,20 @@
# 0.7.0
+
* async-await support [#229](https://github.com/softprops/shiplift/pull/229)
+* add multiple fields to `shiplift::rep::Version` [#212](https://github.com/softprops/shiplift/pull/212)
+* add `image_id` and `state` fields to `shiplift::rep::Container` [#213](https://github.com/softprops/shiplift/pull/213)
+* add `ContainerOptionsBuilder::publish_all_ports()` [#215](https://github.com/softprops/shiplift/pull/215)
+* re-export `hyper::Uri` as `shiplift::Uri` [#209](https://github.com/softprops/shiplift/pull/209)
+* `shiplift::builder::ImageListOptionsBuilder::all()` no longer accepts an argument and always sets the option to true [#211](https://github.com/softprops/shiplift/pull/211)
+* add `repo_tags`, `repo_digests` fields to `ImageDetails` [#222](https://github.com/softprops/shiplift/pull/222)
+* add `status` field to container State [#221](https://github.com/softprops/shiplift/pull/221)
+* support for specifying user when creating container [#220](https://github.com/softprops/shiplift/pull/220)
+* add `nano_cpus` and `memory_swap` to `ContainerOptions` [#230](https://github.com/softprops/shiplift/pull/230)
+* `ContainerOptionsBuilder::env()` signature changed [#237](https://github.com/softprops/shiplift/pull/237)
+* allow attaching to containers when connecting to Docker daemon via UNIX socket [#238](https://github.com/softprops/shiplift/pull/238)
+* support for uploading tar to container [#239](https://github.com/softprops/shiplift/pull/239)
+* fix registry authentication to use URL-safe base64 encoding [#245](https://github.com/softprops/shiplift/pull/245)
# 0.6.0
diff --git a/Cargo.toml b/Cargo.toml
index c87e926..a4bf7b5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "shiplift"
-version = "0.6.0"
+version = "0.7.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 41f9c1d..c85ed79 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ Add the following to your `Cargo.toml` file
```toml
[dependencies]
-shiplift = "0.6"
+shiplift = "0.7"
```
## usage