From 419dbcf50b6a52799bfe6f9b9f2adf4579d77653 Mon Sep 17 00:00:00 2001 From: Cezar Craciunoiu Date: Sun, 7 May 2023 17:43:14 +0300 Subject: [PATCH] chore: Bump version reference Signed-off-by: Cezar Craciunoiu --- README.md | 2 +- docs/README.md | 2 +- example/build.pkr.hcl | 2 +- version/version.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a1c6148..139d524 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init). packer { required_plugins { unikraft = { - version = ">= 0.1.0" + version = ">= 0.1.1" source = "github.com/unikraft/unikraft" } } diff --git a/docs/README.md b/docs/README.md index a1c6148..139d524 100644 --- a/docs/README.md +++ b/docs/README.md @@ -19,7 +19,7 @@ Then, run [`packer init`](https://www.packer.io/docs/commands/init). packer { required_plugins { unikraft = { - version = ">= 0.1.0" + version = ">= 0.1.1" source = "github.com/unikraft/unikraft" } } diff --git a/example/build.pkr.hcl b/example/build.pkr.hcl index b80b557..db8ca53 100644 --- a/example/build.pkr.hcl +++ b/example/build.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { unikraft = { - version = ">=v0.1.0" + version = ">=v0.1.1" source = "github.com/unikraft/unikraft" } } diff --git a/version/version.go b/version/version.go index 22a8331..412322a 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ import ( var ( // Version is the main version number that is being run at the moment. - Version = "0.1.0" + Version = "0.1.1" // VersionPrerelease is A pre-release marker for the Version. If this is "" // (empty string) then it means that it is a final release. Otherwise, this