diff --git a/CHANGELOG.md b/CHANGELOG.md index 94e9162..9aa6338 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ### Added ### Fixed +## 0.4.1 - 2024-11-21 + +### Fixed +- Fix builds with repositories that use `$basearch` in their URLs, e.g RHEL UBI images. + ## 0.4.0 - 2024-10-02 ### Breaking Changes - Remove rootless support in favour of documenting how to use `unshare` to run in a user namespace. diff --git a/Cargo.lock b/Cargo.lock index 2c7316f..714f5ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1960,7 +1960,7 @@ dependencies = [ [[package]] name = "rpmoci" -version = "0.4.0" +version = "0.4.1" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 4cdfa3e..01a10af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rpmoci" -version = "0.4.0" +version = "0.4.1" edition = "2021" description = "Build container images from RPMs" # rpmoci uses DNF (via pyo3) which is GPLV2+ licensed,