Skip to content

Commit 3d42f56

Browse files
committed
bump versions for 1.0.3 release
1 parent 3a06fa2 commit 3d42f56

File tree

4 files changed

+20
-10
lines changed

4 files changed

+20
-10
lines changed

.goxc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"PackageVersion": "1.0.2",
2+
"PackageVersion": "1.0.3",
33
"ConfigVersion": "0.9",
44
"TaskSettings": {
55
"bintray": {

CHANGELOG.md

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

5+
## [1.0.3] - 2015-11-13
6+
### Fixed
7+
- Forward application output to stdout/stderr correctly.
8+
59
## [1.0.2] - 2015-05-12
610
### Changed
711
- Moved Docker, CLI & miscellaneous functionality to separate packages.
@@ -37,6 +41,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
3741
- Help dialog.
3842
- Version dialog.
3943

40-
[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.2...HEAD
44+
[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.3...HEAD
45+
[1.0.3]: https://github.com/docker-exec/dexec/compare/v1.0.2...v1.0.3
4146
[1.0.2]: https://github.com/docker-exec/dexec/compare/v1.0.1...v1.0.2
4247
[1.0.1]: https://github.com/docker-exec/dexec/compare/v1.0.0...v1.0.1

README.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ 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.2_linux_amd64.tar.gz) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.2_linux_386.tar.gz) |
16-
| Mac | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.2_darwin_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.2_darwin_386.zip) |
17-
| Windows | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.2_windows_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.2_windows_386.zip) |
15+
| Linux | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.3_linux_amd64.tar.gz) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.3_linux_386.tar.gz) |
16+
| Mac | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.3_darwin_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.3_darwin_386.zip) |
17+
| Windows | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.3_windows_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.3_windows_386.zip) |
1818

19-
Binaries for other distributions are available on [Bintray](https://bintray.com/dexec/release/dexec/1.0.2).
19+
Binaries for other distributions are available on [Bintray](https://bintray.com/dexec/release/dexec/1.0.3).
2020

2121
### Using Go
2222

@@ -142,10 +142,15 @@ $ ./foo.cpp
142142

143143
## Contributors
144144

145-
Thanks to those who have raised issues or created PRs in the following repositories:
145+
#### [docker-exec/dexec](https://github.com/docker-exec/dexec/graphs/contributors)
146146

147-
* [docker-exec/dexec](https://github.com/docker-exec/dexec/graphs/contributors)
148-
* [docker-exec/perl](https://github.com/docker-exec/perl/graphs/contributors)
147+
* [Alix Axel](https://github.com/alixaxel)
148+
* [kroton](https://github.com/kroton)
149+
* [John Albietz](https://github.com/inthecloud247)
150+
151+
#### [docker-exec/perl](https://github.com/docker-exec/perl/graphs/contributors)
152+
153+
* [Øyvind Skaar](https://github.com/oyvindsk)
149154

150155
## See also
151156

cli/cli.go

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

162162
// DisplayVersion prints the version information for the program.
163163
func DisplayVersion(filename string) {
164-
fmt.Printf("%s 1.0.2\n", filename)
164+
fmt.Printf("%s 1.0.3\n", filename)
165165
}

0 commit comments

Comments
 (0)