diff --git a/README.md b/README.md index 8e0cad5..db091eb 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Install the `compose2nix` CLI via one of the following methods: Optionally, you can pin to a specific version: <!-- LINT.OnChange(version) --> ```nix - compose2nix.url = "github:aksiksi/compose2nix/v0.2.3"; + compose2nix.url = "github:aksiksi/compose2nix/v0.3.0"; ``` <!-- LINT.ThenChange(flake.nix:version,main.go:version) --> diff --git a/flake.nix b/flake.nix index df35789..6545dc0 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ pname = "compose2nix"; owner = "aksiksi"; # LINT.OnChange(version) - version = "0.2.4-pre"; + version = "0.3.0"; # LINT.ThenChange(main.go:version,README.md:version) in { # Nix package diff --git a/main.go b/main.go index ec7660d..923f42c 100644 --- a/main.go +++ b/main.go @@ -14,7 +14,7 @@ import ( const ( // LINT.OnChange(version) - appVersion = "0.2.4-pre" + appVersion = "0.3.0" // LINT.ThenChange(flake.nix:version,README.md:version) )