From 04019bfb207849e7464a476bfe6d7046817625c5 Mon Sep 17 00:00:00 2001 From: Assil Ksiksi Date: Sat, 30 Mar 2024 23:18:40 -0400 Subject: [PATCH] bump to v0.1.9 --- 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 c34c022..88eac63 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.8 + go install github.com/aksiksi/compose2nix@v0.1.9 ``` 5. Clone this repo and run `make build`. diff --git a/flake.nix b/flake.nix index 89f5e05..be1067a 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ pname = "compose2nix"; owner = "aksiksi"; # LINT.OnChange(version) - version = "0.1.8"; + version = "0.1.9"; # LINT.ThenChange(main.go:version, README.md:version) in { # Nix package diff --git a/main.go b/main.go index 17575a4..539e593 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,7 @@ import ( const ( // LINT.OnChange(version) - appVersion = "0.1.8" + appVersion = "0.1.9" // LINT.ThenChange(flake.nix:version,README.md:version) )