Skip to content

Commit d2255be

Browse files
committed
Version bumps
1 parent 600b57c commit d2255be

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

.goxc.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"BuildConstraints": "windows,linux,darwin,openbsd",
3-
"PackageVersion": "1.0.6",
2+
"BuildConstraints": "windows,linux,darwin,openbsd",
3+
"PackageVersion": "1.0.7",
44
"TaskSettings": {
55
"bintray": {
66
"downloadspage": "bintray.md",
@@ -11,4 +11,4 @@
1111
}
1212
},
1313
"ConfigVersion": "0.9"
14-
}
14+
}

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased][unreleased]
66

7+
## [1.0.7] - 2016-09-18
8+
### Fixed
9+
- Compatibility with Docker remote API 1.24.
10+
711
## [1.0.6] - 2016-04-24
812
### Fixed
913
- Shebang support for Java files now works.
1014
- Ruby and Objective C no longer output 'stdin: not a tty' before program output.
11-
- Regex for extracting source filenames no longer ignores single character filenames e.g. 'a.cpp'.
15+
- Regex for extracting source filenames no longer ignores single character filenames e.g. 'a.cpp'.
1216

1317
### Changed
1418
- Re-enabled Java, Ruby and Objective C in acceptance tests.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ Download the appropriate binary for your OS and architecture, then unzip or unta
1212

1313
| OS | 64-bit | 32-bit |
1414
| ------- | ------ | ------ |
15-
| Linux | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.6_linux_amd64.tar.gz) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.6_linux_386.tar.gz) |
16-
| Mac | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.6_darwin_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.6_darwin_386.zip) |
17-
| Windows | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.6_windows_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.6_windows_386.zip) |
15+
| Linux | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.7_linux_amd64.tar.gz) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.7_linux_386.tar.gz) |
16+
| Mac | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.7_darwin_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.7_darwin_386.zip) |
17+
| Windows | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.7_windows_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.7_windows_386.zip) |
1818

1919
Binaries for other distributions are available on [Bintray](https://bintray.com/dexec/release/dexec/_latestVersion).
2020

2121
### Using Go
2222

23-
If you have >= Go 1.5 installed and configured correctly, you can install ```dexec``` with the ```go get``` command. For Go 1.5 the ```GO15VENDOREXPERIMENT``` environment variable needs to be set so that dependencies in the vendor directory will be used.
23+
Install with the ```go get``` command.
2424

2525
```sh
2626
$ go get github.com/docker-exec/dexec

cli/cli.go

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

178178
// DisplayVersion prints the version information for the program.
179179
func DisplayVersion(filename string) {
180-
fmt.Printf("%s 1.0.6\n", filename)
180+
fmt.Printf("%s 1.0.7\n", filename)
181181
}

0 commit comments

Comments
 (0)