Skip to content

Commit

Permalink
Release 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sgreben committed Oct 5, 2018
1 parent 118d1ea commit 44b9d7e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.PHONY: build push all README.md
.PHONY: build push all README.md clean

APP=gif
NAME := yeetgif
REPOSITORY := quay.io/sergey_grebenshchikov/$(NAME)
VERSION := 1.0.5
VERSION := 1.0.6
VERSION_COMMIT := $(VERSION)-$(shell printf "%s" "$$(git rev-parse HEAD)")

PACKAGES := $(shell go list -f {{.Dir}} ./...)
Expand All @@ -19,6 +19,9 @@ push: build

all: build push

clean:
rm -rf binaries zip

# go get -u github.com/github/hub
release: zip README.md
git reset
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ Or [download the binary](https://github.com/sgreben/yeetgif/releases/latest) fro

```sh
# Linux
curl -LO https://github.com/sgreben/yeetgif/releases/download/1.0.5/gif_1.0.5_linux_x86_64.tar.gz | tar xz
curl -LO https://github.com/sgreben/yeetgif/releases/download/1.0.6/gif_1.0.6_linux_x86_64.tar.gz | tar xz

# OS X
curl -LO https://github.com/sgreben/yeetgif/releases/download/1.0.5/gif_1.0.5_osx_x86_64.tar.gz | tar xz
curl -LO https://github.com/sgreben/yeetgif/releases/download/1.0.6/gif_1.0.6_osx_x86_64.tar.gz | tar xz

# Windows
curl -LO https://github.com/sgreben/yeetgif/releases/download/1.0.5/gif_1.0.5_windows_x86_64.zip
unzip gif_1.0.5_windows_x86_64.zip
curl -LO https://github.com/sgreben/yeetgif/releases/download/1.0.6/gif_1.0.6_windows_x86_64.zip
unzip gif_1.0.6_windows_x86_64.zip
```

## Use it
Expand All @@ -32,7 +32,6 @@ unzip gif_1.0.5_windows_x86_64.zip
## Usage

```text
Usage: gif [OPTIONS] COMMAND [arg...]
v1.0.0-32f76fdf8817692838c799f5c2f766cc47f5e70d
Expand Down Expand Up @@ -62,6 +61,7 @@ Commands:
Run 'gif COMMAND --help' for more information on a command.
```


## Licensing

- [Modified copy](pkg/imaging) of `github.com/disintegration/imaging`: [MIT License](pkg/imaging/LICENSE)
Expand Down
2 changes: 1 addition & 1 deletion README.template.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ unzip gif_${VERSION}_windows_x86_64.zip
## Usage

```text
Usage: gif [OPTIONS] COMMAND [arg...]
v1.0.0-32f76fdf8817692838c799f5c2f766cc47f5e70d
Expand Down Expand Up @@ -62,6 +61,7 @@ Commands:
Run 'gif COMMAND --help' for more information on a command.
```


## Licensing

- [Modified copy](pkg/imaging) of `github.com/disintegration/imaging`: [MIT License](pkg/imaging/LICENSE)
Expand Down

0 comments on commit 44b9d7e

Please sign in to comment.