diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md new file mode 100644 index 0000000..5cbad11 --- /dev/null +++ b/RELEASE_NOTES.md @@ -0,0 +1,10 @@ +# Release Notes + +## 0.2 +- Error messages from `gvproxy` are now returned to the caller, instead of being dropped. +- Fixed a bug where calling the plugin with no ports specified would cause an `unexpected end of JSON input` error. +- Fixed a bug where the plugin could return an error on a CNI `DEL` command, in violation of the CNI spec. +- The plugin will now print its version when called directly, without arguments. + +## 0.1 +- Initial release \ No newline at end of file diff --git a/plugins/meta/podman-machine/version.go b/plugins/meta/podman-machine/version.go index 32744a9..cec8030 100644 --- a/plugins/meta/podman-machine/version.go +++ b/plugins/meta/podman-machine/version.go @@ -5,7 +5,7 @@ import "fmt" // overwritten at build time var gitCommit = "unknown" -const machineVersion = "0.1.0-dev" +const machineVersion = "0.2.0" func getVersion() string { return fmt.Sprintf(`CNI podman-machine plugin