Skip to content

Commit 7f61cd9

Browse files
committed
Prepare release 1.0.8
1 parent f4673e3 commit 7f61cd9

File tree

9 files changed

+21
-11
lines changed

9 files changed

+21
-11
lines changed

.goxc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"BuildConstraints": "windows,linux,darwin",
3-
"PackageVersion": "1.0.7",
3+
"PackageVersion": "1.0.8",
44
"TaskSettings": {
55
"bintray": {
66
"downloadspage": "bintray.md",

AcceptanceTests/Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Vagrant.configure(2) do |config|
1919
sudo apt-get install -y curl git language-pack-en
2020
2121
if [ ! -d /usr/local/go ]; then
22-
curl -sSL https://dl.google.com/go/go1.12.4.linux-amd64.tar.gz \
22+
curl -sSL https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz \
2323
| tar -C /usr/local -xzf -
2424
fi
2525

AcceptanceTests/bats/fixtures/go/echochamber.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "os"
44
import "fmt"
55

66
func main() {
7-
for _, arg := range os.Args[1:] {
8-
fmt.Printf("%s\n", arg)
9-
}
7+
for _, arg := range os.Args[1:] {
8+
fmt.Printf("%s\n", arg)
9+
}
1010
}

AcceptanceTests/bats/fixtures/go/helloworld.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ package main
33
import "fmt"
44

55
func main() {
6-
fmt.Printf("%s\n", "hello world")
6+
fmt.Printf("%s\n", "hello world")
77
}

AcceptanceTests/bats/fixtures/go/unicode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ package main
33
import "fmt"
44

55
func main() {
6-
fmt.Printf("%s\n", "hello unicode 👾")
6+
fmt.Printf("%s\n", "hello unicode 👾")
77
}

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased][unreleased]
6+
7+
## [1.0.8] - 2019-06-23
68
### Added
9+
- Timeout command line option that causes dexec to exit early if its value is exceeded.
710
- Destroy option in acceptance test script.
811

912
### Fixed
10-
- Fixed Stdin example in Readme.md.
13+
- Streaming IO from container.
14+
- Stdin example in Readme.md.
1115

1216
### Changed
1317
- Migrate to Go Modules for dependency management.
@@ -91,7 +95,12 @@ This project adheres to [Semantic Versioning](http://semver.org/).
9195
- Help dialog.
9296
- Version dialog.
9397

94-
[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.3...HEAD
98+
[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.8...HEAD
99+
[1.0.8]: https://github.com/docker-exec/dexec/compare/v1.0.7...v1.0.8
100+
[1.0.7]: https://github.com/docker-exec/dexec/compare/v1.0.6...v1.0.7
101+
[1.0.6]: https://github.com/docker-exec/dexec/compare/v1.0.5...v1.0.6
102+
[1.0.5]: https://github.com/docker-exec/dexec/compare/v1.0.4...v1.0.5
103+
[1.0.4]: https://github.com/docker-exec/dexec/compare/v1.0.3...v1.0.4
95104
[1.0.3]: https://github.com/docker-exec/dexec/compare/v1.0.2...v1.0.3
96105
[1.0.2]: https://github.com/docker-exec/dexec/compare/v1.0.1...v1.0.2
97106
[1.0.1]: https://github.com/docker-exec/dexec/compare/v1.0.0...v1.0.1

cli.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,5 +187,5 @@ func DisplayHelp(filename string) {
187187

188188
// DisplayVersion prints the version information for the program.
189189
func DisplayVersion(filename string) {
190-
fmt.Printf("%s 1.0.9-SNAPSHOT\n", filename)
190+
fmt.Printf("%s 1.0.8\n", filename)
191191
}

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ go 1.12
44

55
require (
66
github.com/docker/docker v0.7.3-0.20190309235953-33c3200e0d16
7-
github.com/docker/go-units v0.4.0 // indirect
87
github.com/fsouza/go-dockerclient v1.4.1
98
github.com/golang/protobuf v1.3.1 // indirect
109
github.com/kisielk/errcheck v1.2.0 // indirect

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ github.com/gorilla/mux v1.6.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2z
7373
github.com/gorilla/mux v1.7.0/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
7474
github.com/gorilla/mux v1.7.1/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
7575
github.com/gorilla/mux v1.7.2/go.mod h1:1lud6UwP+6orDFRuTfBEV8e9/aOM/c4fVVCaMa2zaAs=
76+
github.com/hashicorp/go-version v1.0.0 h1:21MVWPKDphxa7ineQQTrCU5brh7OuVVAzGOCnnCPtE8=
77+
github.com/hashicorp/go-version v1.0.0/go.mod h1:fltr4n8CU8Ke44wwGCBoEymUuxUHl09ZGVZPK5anwXA=
7678
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
7779
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
7880
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=

0 commit comments

Comments
 (0)