diff --git a/README.md b/README.md index a720a243..f73ad27f 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ $ brew install dbmate Download the binary directly: ```sh -$ curl -fsSL -o dbmate https://github.com/amacneil/dbmate/releases/download/v0.1/dbmate-linux-amd64 +$ curl -fsSL -o dbmate https://github.com/amacneil/dbmate/releases/download/v1.0.0/dbmate-linux-amd64 $ chmod +x dbmate $ mv dbmate /usr/local/bin ``` @@ -42,7 +42,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/v0.1/dbmate-linux-amd64 +$ curl -fsSL -o bin/dbmate-heroku https://github.com/amacneil/dbmate/releases/download/v1.0.0/dbmate-linux-amd64 $ chmod +x bin/dbmate-heroku $ git add bin/dbmate-heroku $ git commit -m "Add dbmate binary" diff --git a/version.go b/version.go index 3e3c10c3..d1533025 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package main // Version of dbmate -const Version = "0.1" +const Version = "1.0.0"