From 700f70550a4ea4cda3c97c9c1c3593e43cd313c1 Mon Sep 17 00:00:00 2001 From: Marcelo Zabani Date: Sat, 7 Sep 2024 17:47:22 -0300 Subject: [PATCH] Prepare for v0.1.5 release (#204) Prepare for v0.1.5 release --- README.md | 4 ++-- codd.cabal | 2 +- nix/install-codd.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f6c86fed..41c80df0 100644 --- a/README.md +++ b/README.md @@ -108,7 +108,7 @@ Automatic merge failed; fix conflicts and then commit the result. ### 1. Self-contained executable -If you are on x86_64-linux, the easiest thing is to download our self-contained statically linked executable from [Github Releases](https://github.com/mzabani/codd/releases). If you can't use that, there are two other installation methods, described below. +If you are on x86_64-linux or on aarch64-macOS, the easiest thing is to download our self-contained binaries from [Github Releases](https://github.com/mzabani/codd/releases). If you can't use that, there are two other installation methods, described below. ### 2. Nix @@ -156,7 +156,7 @@ You can find more about the special migration directives that codd understands [ Now add this migration by running one of the two commands below: ````shell -$ # If you installed codd with Nix +$ # If you are using the binary releases or if you installed codd with Nix $ codd add bootstrap-db.sql $ # If you're using the docker image with a .env file: diff --git a/codd.cabal b/codd.cabal index d1bac6c2..1c77ce9c 100644 --- a/codd.cabal +++ b/codd.cabal @@ -1,7 +1,7 @@ cabal-version: 2.0 name: codd -version: 0.1.4 +version: 0.1.5 description: Codd is a simple-to-use CLI tool that applies plain postgres SQL migrations atomically with strong and automatic cross-environment schema equality checks. README at homepage: https://github.com/mzabani/codd#readme bug-reports: https://github.com/mzabani/codd/issues diff --git a/nix/install-codd.sh b/nix/install-codd.sh index b12b2828..8f5aada5 100755 --- a/nix/install-codd.sh +++ b/nix/install-codd.sh @@ -22,7 +22,7 @@ then fi SRCDIR=$(mktemp -d || echo /tmp/codd-checkout-Y6fRwa_23x) -git clone --depth 1 -b v0.1.4 https://github.com/mzabani/codd.git "$SRCDIR" +git clone --depth 1 -b v0.1.5 https://github.com/mzabani/codd.git "$SRCDIR" nix-env -f "$SRCDIR/nix/install-codd-nixpkgs.nix" \ --option trusted-substituters 'https://cache.nixos.org https://cache.iog.io https://mzabani.cachix.org' \