diff --git a/CHANGELOG.md b/CHANGELOG.md index 1844f629f..79f971030 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.16.1] - 2024-03-11 +### 📃 Details +#### Fixed +- Parse lockfile matchspecs lenient, fixing bug introduced in `0.16.0` by @ruben-arts in [#951](https://github.com/prefix-dev/pixi/pull/951) + +[Full commit history](https://github.com/prefix-dev/pixi/compare/v0.16.0..v0.16.1) + ## [0.16.0] - 2024-03-09 ### ✨ Highlights -- This release removes [`rip`]() and add [`uv`]() as the PyPI resolver and installer. +- This release removes [`rip`](https://github.com/prefix-dev/rip) and add [`uv`](https://github.com/astral-sh/uv) as the PyPI resolver and installer. ### 📃 Details #### Added diff --git a/Cargo.lock b/Cargo.lock index e5a2d1cf2..f81381222 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2996,7 +2996,7 @@ dependencies = [ [[package]] name = "pixi" -version = "0.16.0" +version = "0.16.1" dependencies = [ "assert_matches", "async-once-cell", diff --git a/Cargo.toml b/Cargo.toml index 0aa140546..2982005f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pixi" -version = "0.16.0" +version = "0.16.1" description = "A package management and workflow tool" edition = "2021" authors = ["pixi contributors "]