summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRuben Arts <ruben.arts@hotmail.com>2023-09-22 16:05:21 +0200
committerGitHub <noreply@github.com>2023-09-22 16:05:21 +0200
commitd8d2d8a3e8e1ce99707885aa1437e3768614456b (patch)
treeb252408cc7a3e39ab5ee92b646c2a69cd50921c1
parent90b711d9d68aac445aaeaddbf717fdd0d3ae6805 (diff)
bump: add change-log and bump version number (#352)
-rw-r--r--CHANGELOG.md26
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--pixi.toml2
4 files changed, 29 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 32e0415..61ea08d 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 7a40b49..a7658d8 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 36c5399..64e1cc7 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 <hi@prefix.dev>"]
diff --git a/pixi.toml b/pixi.toml
index f489e74..c348dbc 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 <wolf@prefix.dev>", "Bas Zalmstra <bas@prefix.dev>", "Tim de Jager <tim@prefix.dev>", "Ruben Arts <ruben@prefix.dev>"]
channels = ["conda-forge"]