Skip to content

Commit 77dffc2

Browse files
chore: update flake.nix and README.md for v0.2.0
1 parent fae15c6 commit 77dffc2

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ Using [Devbox](https://www.jetify.com/devbox):
2424

2525
<!-- begin:devbox_install - DON'T EDIT: This block will be replaced by CI -->
2626
```bash
27-
devbox add github:appthrust/karg/v0.1.0#karg
27+
devbox add github:appthrust/karg/v0.2.0#karg
2828
```
2929
<!-- end:devbox_install -->
3030

3131
Using [Nix](https://nixos.org/):
3232

3333
<!-- begin:nix_install - DON'T EDIT: This block will be replaced by CI -->
3434
```bash
35-
nix run github:appthrust/karg/v0.1.0#karg -- --help
35+
nix run github:appthrust/karg/v0.2.0#karg -- --help
3636
```
3737
<!-- end:nix_install -->
3838

flake.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@
1111
let
1212
pkgs = import nixpkgs { inherit system; };
1313

14-
version = "0.1.0"; #version - This line is replaced by CI
14+
version = "0.2.0"; #version - This line is replaced by CI
1515

1616
assetName = "karg-v${version}-${system}.tar.gz";
1717

1818
# Hashes for each platform (will be updated by CI)
1919
hashes = {
2020
"x86_64-linux" = {
21-
hash = "sha256:373c8012938741c5b1e1a0b578a2d5d890c58c02f30969b3b507405a73fb708c"; #x86_64-linux - This line is replaced by CI
21+
hash = "sha256:931c37ffe31d96d48f0bc6179fe3b5ef57a74166d18faf8182dddbc390975cfb"; #x86_64-linux - This line is replaced by CI
2222
};
2323
"aarch64-linux" = {
24-
hash = "sha256:5bbd260f0e5c236fec8a631d5cbc6d9838a9faf15973f160e5070d51e4f327f2"; #aarch64-linux - This line is replaced by CI
24+
hash = "sha256:e18fd9d580f7291915915ad9a458b82b3fad71ab1307e8b8677a84dff6670bcb"; #aarch64-linux - This line is replaced by CI
2525
};
2626
"x86_64-darwin" = {
27-
hash = "sha256:b358455f4a7c522571c13405612d822374f4706c6b4c548ac3a433892faae204"; #x86_64-darwin - This line is replaced by CI
27+
hash = "sha256:75f8d3bbe6a17931d6784b3d1419a69350c8df6ba8f5648ba17be79b62ac307f"; #x86_64-darwin - This line is replaced by CI
2828
};
2929
"aarch64-darwin" = {
30-
hash = "sha256:8138051cc0b74d0f407e5224183f10dc4b6a4d4890db723687a83cfd569f210c"; #aarch64-darwin - This line is replaced by CI
30+
hash = "sha256:420873d1eeeed399e51100c4d7eb5d8040e4f0d5eedbac9593fb80c2c6e7963e"; #aarch64-darwin - This line is replaced by CI
3131
};
3232
};
3333

0 commit comments

Comments
 (0)