Skip to content

Commit

Permalink
release: podlet v0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
k9withabone committed Dec 30, 2023
1 parent 3c3e144 commit b96ef59
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 3 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
# Changelog

## [0.2.3] - 2023-12-31

### Features

- Add support for quadlet options introduced in podman v4.7.0 ([#29](https://github.com/k9withabone/podlet/issues/29))
- Container
- `DNS=`
- `DNSOption=`
- `DNSSearch=`
- `PidsLimit=`
- `ShmSize=`
- `Ulimit=`
- Kube
- `AutoUpdate=`
- Network
- `DNS=`
- Add `podlet generate` subcommands for generating quadlet files from existing:
- Containers ([#23](https://github.com/k9withabone/podlet/issues/23))
- Networks
- Volumes

### Bug Fixes

- *(compose)* `network_mode` accept all podman values ([#38](https://github.com/k9withabone/podlet/issues/38))
- Improved error message for unsupported values
- *(network)* Support `<start-IP>-<end-IP>` syntax for `--ip-range`

### Documentation

- *(readme)* Podman v4.7.0
- *(readme)* Update demo and usage

### Miscellaneous Tasks

- *(ci)* Skip container run for conmon v2.1.9
- *(lint)* Fix new rust 1.75 clippy warnings
- Update dependencies

## [0.2.2] - 2023-12-15

### Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "podlet"
version = "0.2.2"
version = "0.2.3"
authors = ["Paul Nettleton <[email protected]>"]
edition = "2021"
description = "Generate podman quadlet files from a podman command or a compose file"
Expand Down Expand Up @@ -153,7 +153,8 @@ commit_parsers = [
{ message = "^test", group = "6 Testing" },
{ message = "^refactor", group = "7 Refactor" },
{ message = "^style", group = "8 Styling" },
{ message = "^chore|ci", group = "9 Miscellaneous Tasks" },
{ message = "^chore", group = "9 Miscellaneous Tasks" },
{ message = "^ci", default_scope = "ci", group = "9 Miscellaneous Tasks" },
{ message = "^revert", group = "10 Revert" },
{ message = "^release", skip = true },
{ message = "^chore\\(deps\\)", skip = true },
Expand Down

0 comments on commit b96ef59

Please sign in to comment.