Skip to content

Commit 50007e0

Browse files
committed
Relese v0.4.0
1 parent bf61856 commit 50007e0

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.release/ci.hcl

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ project "nomad-driver-podman" {
1010
repository = "nomad-driver-podman"
1111
release_branches = [
1212
"main",
13+
"release/0.4.0",
1314
]
1415
}
1516
}

CHANGELOG.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
1-
## UNRELEASED
1+
## 0.4.0 (July 14, 2022)
22

33
FEATURES:
4+
45
* config: Map host devices into container. [[GH-41](https://github.com/hashicorp/nomad-driver-podman/pull/41)]
56
* config: Stream logs via API, support journald log driver. [[GH-99](https://github.com/hashicorp/nomad-driver-podman/pull/99)]
6-
* config: Privileged containers.
7+
* config: Privileged containers. [[GH-137](https://github.com/hashicorp/nomad-driver-podman/pull/137)]
78
* config: Add `cpu_hard_limit` and `cpu_cfs_period` options [[GH-149](https://github.com/hashicorp/nomad-driver-podman/pull/149)]
89
* config: Allow mounting rootfs as read-only. [[GH-133](https://github.com/hashicorp/nomad-driver-podman/pull/133)]
910
* config: Allow setting `ulimit` configuration. [[GH-166](https://github.com/hashicorp/nomad-driver-podman/pull/166)]
1011
* config: Allow setting `image_pull_timeout` and `client_http_timeout ` [[GH-131](https://github.com/hashicorp/nomad-driver-podman/pull/131)]
1112
* 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)]
1213

1314
IMPROVEMENTS:
15+
1416
* log: Improve log messages on errors. [[GH-177](https://github.com/hashicorp/nomad-driver-podman/pull/177)]
1517

1618
BUG FIXES:
19+
1720
* log: Use error key context to log errors rather than Go err style. [[GH-126](https://github.com/hashicorp/nomad-driver-podman/pull/126)]
1821
* telemetry: respect telemetry.collection_interval to reduce cpu churn when running many containers [[GH-130](https://github.com/hashicorp/nomad-driver-podman/pull/130)]
1922

version/version.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ var (
1414
//
1515
// Version must conform to the format expected by
1616
// github.com/hashicorp/go-version for tests to work.
17-
Version = "0.3.1"
17+
Version = "0.4.0"
1818

1919
// A pre-release marker for the version. If this is "" (empty string)
2020
// then it means that it is a final release. Otherwise, this is a pre-release
2121
// such as "dev" (in development), "beta.1", "rc1.1", etc.
22-
VersionPrerelease = "dev"
22+
VersionPrerelease = ""
2323

2424
// VersionMetadata is metadata further describing the build type.
2525
VersionMetadata = ""

0 commit comments

Comments
 (0)