This commit is contained in:
Adrian Macneil 2018-01-23 17:42:06 -08:00
parent df119a76f3
commit e03dec8a04
2 changed files with 4 additions and 4 deletions

View file

@ -39,7 +39,7 @@ $ brew install dbmate
Download the binary directly: Download the binary directly:
```sh ```sh
$ sudo curl -fsSL -o /usr/local/bin/dbmate https://github.com/amacneil/dbmate/releases/download/v1.2.1/dbmate-linux-amd64 $ sudo curl -fsSL -o /usr/local/bin/dbmate https://github.com/amacneil/dbmate/releases/download/v1.3.0/dbmate-linux-amd64
$ sudo chmod +x /usr/local/bin/dbmate $ sudo chmod +x /usr/local/bin/dbmate
``` ```
@ -57,7 +57,7 @@ To use dbmate on Heroku, the easiest method is to store the linux binary in your
```sh ```sh
$ mkdir -p bin $ mkdir -p bin
$ curl -fsSL -o bin/dbmate-heroku https://github.com/amacneil/dbmate/releases/download/v1.2.1/dbmate-linux-amd64 $ curl -fsSL -o bin/dbmate-heroku https://github.com/amacneil/dbmate/releases/download/v1.3.0/dbmate-linux-amd64
$ chmod +x bin/dbmate-heroku $ chmod +x bin/dbmate-heroku
$ git add bin/dbmate-heroku $ git add bin/dbmate-heroku
$ git commit -m "Add dbmate binary" $ git commit -m "Add dbmate binary"
@ -75,7 +75,7 @@ $ heroku run bin/dbmate-heroku up
Dbmate can be installed directly using `go get`: Dbmate can be installed directly using `go get`:
```sh ```sh
$ go get -u github.com/amacneil/dbmate $ go get -u github.com/amacneil/dbmate/cmd/dbmate
``` ```
## Commands ## Commands

View file

@ -1,4 +1,4 @@
package dbmate package dbmate
// Version of dbmate // Version of dbmate
const Version = "1.2.1" const Version = "1.3.0"