Merge pull request #2469 from brendandburns/release-0.4

Release 0.4
This commit is contained in:
Joe Beda
2014-11-19 13:39:33 -08:00
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ etcd-tar:
- source_hash: {{ etcd_tar_hash }}
- archive_format: tar
- if_missing: /usr/local/src/etcd-{{ etcd_version }}-linux-amd64
- tar_options: z
- tar_options: xz
file.directory:
- name: /usr/local/src/etcd-{{ etcd_version }}-linux-amd64
- user: root

View File

@@ -36,8 +36,8 @@ package version
var (
// TODO: Deprecate gitMajor and gitMinor, use only gitVersion instead.
gitMajor string = "0" // major version, always numeric
gitMinor string = "4.3+" // minor version, numeric possibly followed by "+"
gitVersion string = "v0.4.3-dev" // version from git, output of $(git describe)
gitMinor string = "4.4+" // minor version, numeric possibly followed by "+"
gitVersion string = "v0.4.4-dev" // version from git, output of $(git describe)
gitCommit string = "" // sha1 from git, output of $(git rev-parse HEAD)
gitTreeState string = "not a git tree" // state of git tree, either "clean" or "dirty"
)