From d8d2d8a3e8e1ce99707885aa1437e3768614456b Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Fri, 22 Sep 2023 16:05:21 +0200 Subject: [PATCH] bump: add change-log and bump version number (#352) --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- pixi.toml | 2 +- 4 files changed, 29 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32e041571..61ea08d97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,32 @@ 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.4.0] - 2023-09-22 + +### Highlights + +This release adds the start of a new cli command `pixi project` which will allow users to interact with the project configuration from the command line. + +### Details + +#### Fixed +* Align with latest rattler version `0.9.0` by @ruben-arts in https://github.com/prefix-dev/pixi/pull/350 + +#### Added +* Add codespell (config, workflow) to catch typos + catch and fix some of those by @yarikoptic in https://github.com/prefix-dev/pixi/pull/329 +* remove atty and use stdlib by @wolfv in https://github.com/prefix-dev/pixi/pull/337 +* `xtsci-dist` to Community.md by @HaoZeke in https://github.com/prefix-dev/pixi/pull/339 +* `ribasim` to Community.md by @Hofer-Julian in https://github.com/prefix-dev/pixi/pull/340 +* `LFortran` to Community.md by @wolfv in https://github.com/prefix-dev/pixi/pull/341 +* Give tip to resolve virtual package issue by @ruben-arts in https://github.com/prefix-dev/pixi/pull/348 +* `pixi project channel add` subcommand by @baszalmstra and @ruben-arts in https://github.com/prefix-dev/pixi/pull/347 + +## New Contributors +* @yarikoptic made their first contribution in https://github.com/prefix-dev/pixi/pull/329 +* @HaoZeke made their first contribution in https://github.com/prefix-dev/pixi/pull/339 + +**Full Changelog**: https://github.com/prefix-dev/pixi/compare/v0.3.0...v0.4.0 + ## [0.3.0] - 2023-09-11 ### Highlights diff --git a/Cargo.lock b/Cargo.lock index 7a40b49da..a7658d873 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1982,7 +1982,7 @@ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] name = "pixi" -version = "0.3.0" +version = "0.4.0" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 36c5399a2..64e1cc7db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pixi" -version = "0.3.0" +version = "0.4.0" description = "A package management and workflow tool" edition = "2021" authors = ["pixi contributors "] diff --git a/pixi.toml b/pixi.toml index f489e74f4..c348dbc44 100644 --- a/pixi.toml +++ b/pixi.toml @@ -1,6 +1,6 @@ [project] name = "pixi" -version = "0.3.0" +version = "0.4.0" description = "Package management made easy!" authors = ["Wolf Vollprecht ", "Bas Zalmstra ", "Tim de Jager ", "Ruben Arts "] channels = ["conda-forge"]