Skip to content

Commit

Permalink
bump versions for 1.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
andystanton committed Nov 13, 2015
1 parent 3a06fa2 commit 3d42f56
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .goxc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"PackageVersion": "1.0.2",
"PackageVersion": "1.0.3",
"ConfigVersion": "0.9",
"TaskSettings": {
"bintray": {
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [1.0.3] - 2015-11-13
### Fixed
- Forward application output to stdout/stderr correctly.

## [1.0.2] - 2015-05-12
### Changed
- Moved Docker, CLI & miscellaneous functionality to separate packages.
Expand Down Expand Up @@ -37,6 +41,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Help dialog.
- Version dialog.

[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.2...HEAD
[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.3...HEAD
[1.0.3]: https://github.com/docker-exec/dexec/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/docker-exec/dexec/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/docker-exec/dexec/compare/v1.0.0...v1.0.1
19 changes: 12 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Download the appropriate binary for your OS and architecture, then unzip or unta

| OS | 64-bit | 32-bit |
| ------- | ------ | ------ |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |
| 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) |

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

### Using Go

Expand Down Expand Up @@ -142,10 +142,15 @@ $ ./foo.cpp

## Contributors

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

* [docker-exec/dexec](https://github.com/docker-exec/dexec/graphs/contributors)
* [docker-exec/perl](https://github.com/docker-exec/perl/graphs/contributors)
* [Alix Axel](https://github.com/alixaxel)
* [kroton](https://github.com/kroton)
* [John Albietz](https://github.com/inthecloud247)

#### [docker-exec/perl](https://github.com/docker-exec/perl/graphs/contributors)

* [Øyvind Skaar](https://github.com/oyvindsk)

## See also

Expand Down
2 changes: 1 addition & 1 deletion cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,5 +161,5 @@ func DisplayHelp(filename string) {

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

0 comments on commit 3d42f56

Please sign in to comment.