Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amacneil committed Jan 24, 2018
1 parent df119a7 commit e03dec8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ $ brew install dbmate
Download the binary directly:

```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
```

Expand All @@ -57,7 +57,7 @@ To use dbmate on Heroku, the easiest method is to store the linux binary in your

```sh
$ 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
$ git add bin/dbmate-heroku
$ git commit -m "Add dbmate binary"
Expand All @@ -75,7 +75,7 @@ $ heroku run bin/dbmate-heroku up
Dbmate can be installed directly using `go get`:

```sh
$ go get -u github.com/amacneil/dbmate
$ go get -u github.com/amacneil/dbmate/cmd/dbmate
```

## Commands
Expand Down
2 changes: 1 addition & 1 deletion pkg/dbmate/version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dbmate

// Version of dbmate
const Version = "1.2.1"
const Version = "1.3.0"

0 comments on commit e03dec8

Please sign in to comment.