prepare for v0.1.0 tag

This commit is contained in:
Rick Olson 2014-06-24 15:29:20 -06:00
parent b291e22e85
commit 6c0821092a
3 changed files with 6 additions and 10 deletions

@ -10,20 +10,16 @@ file from a Git Media server.
* [Commands](../man)
* The Server
* [API](api.md)
* Very early [v1 launch blog post](v1-blog-post.md)
* UXR Study: [Super-size me][ux].
[ux]: http://uxr.githubapp.com/2013/09/24/supersize-me/
## Getting Started
The client lives in [github/git-media](https://github.com/github/git-media).
Download the [latest release](https://github.com/github/git-media/releases/tag/v0.0.1). Below
Download the [latest release](https://github.com/github/git-media/releases/tag/v0.1.0). Below
are the linked Git Media binaries for Mac and Windows:
* [Mac](https://github.com/github/git-media/releases/download/v0.0.1/git-media-darwin-amd64-v0.0.1.tar.gz)
* [Windows](https://github.com/github/git-media/releases/download/v0.0.1/git-media-windows-amd64-v0.0.1.zip) (amd64)
* [Mac](https://github.com/github/git-media/releases/download/v0.1.0/git-media-darwin-amd64-0.1.0.tar.gz)
* [Windows](https://github.com/github/git-media/releases/download/v0.1.0/git-media-windows-amd64-0.1.0.zip) (amd64)
### Configure Git

@ -8,7 +8,7 @@ import (
"strings"
)
const Version = "0.0.1"
const Version = "0.1.0"
var (
LargeSizeThreshold = 5 * 1024 * 1024

@ -47,7 +47,7 @@ func main() {
func build(buildos, buildarch string) {
addenv := len(buildos) > 0 && len(buildarch) > 0
name := "git-media-v" + gitmedia.Version
name := "git-media-" + gitmedia.Version
dir := "bin"
if addenv {
@ -168,5 +168,5 @@ func logAndRun(cmd *exec.Cmd) error {
}
func zipName(os, arch string) string {
return fmt.Sprintf("git-media-%s-%s-v%s", os, arch, gitmedia.Version)
return fmt.Sprintf("git-media-%s-%s-%s", os, arch, gitmedia.Version)
}