Skip to content

Commit

Permalink
Bump versions for 1.0.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
andystanton committed May 12, 2015
1 parent 124b6fe commit b26e053
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 11 deletions.
1 change: 0 additions & 1 deletion .goxc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"PackageVersion": "1.0.2",
"PrereleaseInfo": "snapshot",
"ConfigVersion": "0.9",
"TaskSettings": {
"bintray": {
Expand Down
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased][unreleased]
## [1.0.2] - 2015-05-12
### Changed
- Moved Docker, CLI & miscellaneous functionality to separate packages.
- Bumped patch versions of each image by 1 to enable unicode support introduced by those versions.
- Changed the format of the image names from ```dexec/{{language abbreviation}}``` to ```dexec/lang-{{language abbreviation}}```.
- Add contributors section in the readme.

## [1.0.1] - 2015-04-20
### Added
Expand Down Expand Up @@ -34,5 +37,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Help dialog.
- Version dialog.

[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.1...HEAD
[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.2...HEAD
[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
14 changes: 7 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.1_linux_amd64.tar.gz) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.1_linux_386.tar.gz) |
| Mac | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.1_darwin_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.1_darwin_386.zip) |
| Windows | [64-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.1_windows_amd64.zip) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.1_windows_386.zip) |
| 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) |

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

### Using Go

Expand Down Expand Up @@ -103,9 +103,9 @@ As with sources, included files and directories are mounted using the default Do
```dexec``` stores a map of file extensions to Docker images and uses this to look up the right image to run for a given source file. This can be overridden in the following way:

```sh
$ dexec foo.c --specify-image=dexec/cpp
$ dexec foo.c --specify-image dexec/cpp
$ dexec foo.c -s dexec/cpp
$ dexec foo.c --specify-image=dexec/lang-cpp
$ dexec foo.c --specify-image dexec/lang-cpp
$ dexec foo.c -s dexec/lang-cpp
```

If no image version is specified, "latest" is used.
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-snapshot\n", filename)
fmt.Printf("%s 1.0.2\n", filename)
}

0 comments on commit b26e053

Please sign in to comment.