From fb4aaf4bde4b506cb3b5defd21999aa5715dab03 Mon Sep 17 00:00:00 2001 From: Assil Ksiksi Date: Tue, 14 Nov 2023 17:43:52 -0500 Subject: [PATCH] bump to v0.1.3 --- README.md | 2 +- flake.nix | 2 +- main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 17a9940..b3f757a 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Install the `compose2nix` CLI via one of the following methods: 1. Install the command using `go`: ``` - go install github.com/aksiksi/compose2nix@v0.1.2 + go install github.com/aksiksi/compose2nix@v0.1.3 ``` 2. Clone this repo and run `make build`. 3. Install the Flake and add the following to your NixOS config: diff --git a/flake.nix b/flake.nix index ef89466..cb8bf30 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,7 @@ forAllSystems = function: nixpkgs.lib.genAttrs supportedSystems (system: function nixpkgs.legacyPackages.${system}); pname = "compose2nix"; owner = "aksiksi"; - version = "0.1.2"; + version = "0.1.3"; in { # Nix package packages = forAllSystems (pkgs: { diff --git a/main.go b/main.go index 19755af..70c4714 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,7 @@ import ( ) const ( - appVersion = "0.1.2" + appVersion = "0.1.3" ) // TODO(aksiksi): Investigate parsing flags into structs using the *Val functions.