Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-allan committed Aug 21, 2021
1 parent f34c115 commit 97edd6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Binaries for all supported platforms are available for download on the [releases
If you're looking for a one liner to download the binary, you can use this:

```
curl -L https://github.com/matt-allan/envtpl/releases/download/0.1.0/aarch64-macos.tar.xz | tar -xJ --strip-components=1 -C .
curl -L https://github.com/matt-allan/envtpl/releases/download/0.2.0/aarch64-macos.tar.xz | tar -xJ --strip-components=1 -C .
```

Replace the filename with the architecture you want (listed on the releases page). The binary will be available in your current directory as `envtpl`.
Expand Down
4 changes: 2 additions & 2 deletions src/main.zig
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
const std = @import("std");
usingnamespace @import("envtpl.zig");

const version = "0.2.0";

const help =
\\ Usage: envtpl
\\
Expand All @@ -15,8 +17,6 @@ const help =
\\ of the environment variable matching `NAME`.
;

const version = "0.1.0";

pub fn main() !void {
var args = std.process.args();

Expand Down

0 comments on commit 97edd6a

Please sign in to comment.