Skip to content

Commit

Permalink
Prepare for v0.1.5 release (#204)
Browse files Browse the repository at this point in the history
Prepare for v0.1.5 release
  • Loading branch information
mzabani authored Sep 7, 2024
1 parent 383d70d commit 700f705
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion codd.cabal
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/mzabani/codd#readme>
homepage: https://github.com/mzabani/codd#readme
bug-reports: https://github.com/mzabani/codd/issues
Expand Down
2 changes: 1 addition & 1 deletion nix/install-codd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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' \
Expand Down

0 comments on commit 700f705

Please sign in to comment.