diff --git a/README.md b/README.md index 5e978a0..b3f67d0 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.9 + go install github.com/aksiksi/compose2nix@v0.1.10 ``` 5. Clone this repo and run `make build`. diff --git a/flake.nix b/flake.nix index c6f372e..cdf4591 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ pname = "compose2nix"; owner = "aksiksi"; # LINT.OnChange(version) - version = "0.1.9"; + version = "0.1.10"; # LINT.ThenChange(main.go:version, README.md:version) in { # Nix package diff --git a/main.go b/main.go index f78d004..580074f 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,7 @@ import ( const ( // LINT.OnChange(version) - appVersion = "0.1.9" + appVersion = "0.1.10" // LINT.ThenChange(flake.nix:version,README.md:version) )