diff --git a/CHANGELOG.md b/CHANGELOG.md index 424cfa6d9..99d3defb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,28 @@ 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/). +## [0.2.0] - 2023-08-22 + +### Highlights +- Added `pixi search` command to search for packages, by @Wackyator. ([#244](https://github.com/prefix-dev/pixi/pull/244)) +- Added target specific tasks, eg. `[target.win-64.tasks]`, by @ruben-arts. ([#269](https://github.com/prefix-dev/pixi/pull/269)) +- Flaky install caused by the download of packages, by @baszalmstra. ([#281](https://github.com/prefix-dev/pixi/pull/281)) + +### Details +#### Fixed +- Install instructions, by @baszalmstra. ([#258](https://github.com/prefix-dev/pixi/pull/258)) +- Typo in getting started, by @RaulPL. ([#266](https://github.com/prefix-dev/pixi/pull/266)) +- Don't execute alias tasks, by @baszalmstra. ([#274](https://github.com/prefix-dev/pixi/pull/274)) + +#### Added +- Rerun example, by @ruben-arts. ([#236](https://github.com/prefix-dev/pixi/pull/236)) +- Reduction of pixi's binary size, by @baszalmstra ([#256](https://github.com/prefix-dev/pixi/pull/256)) +- Updated pixi banner, including webp file for faster loading, by @baszalmstra. ([#257](https://github.com/prefix-dev/pixi/pull/257)) +- Set linguist attributes for `pixi.lock` automatically, by @spenserblack. ([#265](https://github.com/prefix-dev/pixi/pull/265)) +- Contribution manual for pixi, by @ruben-arts. ([#268](https://github.com/prefix-dev/pixi/pull/268)) +- GitHub issue templates, by @ruben-arts. ([#271](https://github.com/prefix-dev/pixi/pull/271)) +- Links to prefix.dev in readme, by @tdejager. ([#279](https://github.com/prefix-dev/pixi/pull/279)) + ## [0.1.0] - 2023-08-11 As this is our first [Semantic Versioning](semver.org) release, we'll change from the prototype to the developing phase, as semver describes. diff --git a/Cargo.lock b/Cargo.lock index ba9aa5244..e5ed1c2e0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2060,7 +2060,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pixi" -version = "0.1.0" +version = "0.2.0" dependencies = [ "atty", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 60981c9b6..29dcb75f7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pixi" -version = "0.1.0" +version = "0.2.0" description = "A package management and workflow tool" edition = "2021" authors = ["pixi contributors "] diff --git a/pixi.toml b/pixi.toml index b00ff3cd5..59d9faf38 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "pixi" -version = "0.1.0" +version = "0.2.0" description = "Package management made easy!" authors = ["Wolf Vollprecht ", "Bas Zalmstra ", "Tim de Jager ", "Ruben Arts "] channels = ["conda-forge"]