From 2e9763b3d73e154ce7a3ca1d44e85f9b893b0b28 Mon Sep 17 00:00:00 2001 From: Assil Ksiksi Date: Sat, 2 Dec 2023 19:55:23 -0500 Subject: [PATCH] bump to v0.1.6 --- 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 a58c0e6..6d74396 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Install the `compose2nix` CLI via one of the following methods: 4. Install the command using `go`: ``` - go install github.com/aksiksi/compose2nix@v0.1.5 + go install github.com/aksiksi/compose2nix@v0.1.6 ``` 5. Clone this repo and run `make build`. diff --git a/flake.nix b/flake.nix index 08fd5dd..0a8ae35 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ pname = "compose2nix"; owner = "aksiksi"; # LINT.OnChange(version) - version = "0.1.5"; + version = "0.1.6"; # LINT.ThenChange(main.go:version, README.md:version) in { # Nix package diff --git a/main.go b/main.go index 5f506a1..8f6b51c 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,7 @@ import ( const ( // LINT.OnChange(version) - appVersion = "0.1.5" + appVersion = "0.1.6" // LINT.ThenChange(flake.nix:version,README.md:version) )