Skip to content

Commit b26e053

Browse files
committed
Bump versions for 1.0.2 release.
1 parent 124b6fe commit b26e053

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.goxc.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"PackageVersion": "1.0.2",
3-
"PrereleaseInfo": "snapshot",
43
"ConfigVersion": "0.9",
54
"TaskSettings": {
65
"bintray": {

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
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-
## [Unreleased][unreleased]
5+
## [1.0.2] - 2015-05-12
66
### Changed
77
- Moved Docker, CLI & miscellaneous functionality to separate packages.
8+
- Bumped patch versions of each image by 1 to enable unicode support introduced by those versions.
9+
- Changed the format of the image names from ```dexec/{{language abbreviation}}``` to ```dexec/lang-{{language abbreviation}}```.
10+
- Add contributors section in the readme.
811

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

37-
[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.1...HEAD
40+
[unreleased]: https://github.com/docker-exec/dexec/compare/v1.0.2...HEAD
41+
[1.0.2]: https://github.com/docker-exec/dexec/compare/v1.0.1...v1.0.2
3842
[1.0.1]: https://github.com/docker-exec/dexec/compare/v1.0.0...v1.0.1

README.md

Lines changed: 7 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.1_linux_amd64.tar.gz) | [32-bit](https://bintray.com/artifact/download/dexec/release/dexec_1.0.1_linux_386.tar.gz) |
16-
| 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) |
17-
| 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) |
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) |
1818

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

2121
### Using Go
2222

@@ -103,9 +103,9 @@ As with sources, included files and directories are mounted using the default Do
103103
```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:
104104

105105
```sh
106-
$ dexec foo.c --specify-image=dexec/cpp
107-
$ dexec foo.c --specify-image dexec/cpp
108-
$ dexec foo.c -s dexec/cpp
106+
$ dexec foo.c --specify-image=dexec/lang-cpp
107+
$ dexec foo.c --specify-image dexec/lang-cpp
108+
$ dexec foo.c -s dexec/lang-cpp
109109
```
110110

111111
If no image version is specified, "latest" is used.

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-snapshot\n", filename)
164+
fmt.Printf("%s 1.0.2\n", filename)
165165
}

0 commit comments

Comments
 (0)