diff --git a/.release/ci.hcl b/.release/ci.hcl index 1b519224..7c7dcf75 100644 --- a/.release/ci.hcl +++ b/.release/ci.hcl @@ -10,6 +10,7 @@ project "nomad-driver-podman" { repository = "nomad-driver-podman" release_branches = [ "main", + "release/0.4.0", ] } } diff --git a/CHANGELOG.md b/CHANGELOG.md index 469ce186..117c7739 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,10 @@ -## UNRELEASED +## 0.4.0 (July 14, 2022) FEATURES: + * config: Map host devices into container. [[GH-41](https://github.com/hashicorp/nomad-driver-podman/pull/41)] * config: Stream logs via API, support journald log driver. [[GH-99](https://github.com/hashicorp/nomad-driver-podman/pull/99)] -* config: Privileged containers. +* config: Privileged containers. [[GH-137](https://github.com/hashicorp/nomad-driver-podman/pull/137)] * config: Add `cpu_hard_limit` and `cpu_cfs_period` options [[GH-149](https://github.com/hashicorp/nomad-driver-podman/pull/149)] * config: Allow mounting rootfs as read-only. [[GH-133](https://github.com/hashicorp/nomad-driver-podman/pull/133)] * config: Allow setting `ulimit` configuration. [[GH-166](https://github.com/hashicorp/nomad-driver-podman/pull/166)] @@ -11,9 +12,11 @@ FEATURES: * runtime: Add support for host and CSI volumes and using podman tasks as CSI plugins [[GH-169](https://github.com/hashicorp/nomad-driver-podman/pull/169)][[GH-152](https://github.com/hashicorp/nomad-driver-podman/pull/152)] IMPROVEMENTS: + * log: Improve log messages on errors. [[GH-177](https://github.com/hashicorp/nomad-driver-podman/pull/177)] BUG FIXES: + * log: Use error key context to log errors rather than Go err style. [[GH-126](https://github.com/hashicorp/nomad-driver-podman/pull/126)] * telemetry: respect telemetry.collection_interval to reduce cpu churn when running many containers [[GH-130](https://github.com/hashicorp/nomad-driver-podman/pull/130)] diff --git a/version/version.go b/version/version.go index 8e078aa8..0c5fa6bb 100644 --- a/version/version.go +++ b/version/version.go @@ -14,12 +14,12 @@ var ( // // Version must conform to the format expected by // github.com/hashicorp/go-version for tests to work. - Version = "0.3.1" + Version = "0.4.0" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta.1", "rc1.1", etc. - VersionPrerelease = "dev" + VersionPrerelease = "" // VersionMetadata is metadata further describing the build type. VersionMetadata = ""