From 5b16bdd07db973e0ccfcc0e1aef0a85c45573835 Mon Sep 17 00:00:00 2001 From: Ruben Arts Date: Tue, 7 May 2024 09:27:44 +0200 Subject: [PATCH] chore: bump to v0.21.1 and make changelog (#1334) --- CHANGELOG.md | 9 +++++++++ CITATION.cff | 4 ++-- Cargo.lock | 2 +- Cargo.toml | 2 +- docs/advanced/github_actions.md | 2 +- install/install.ps1 | 2 +- install/install.sh | 2 +- schema/schema.json | 4 ++-- tbump.toml | 4 ++-- 9 files changed, 20 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 24a2dee96..005a5f31a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,15 @@ 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.21.1] - 2024-05-07 +### 📃 Details +#### Fixed +- Use read timeout, not global timeout by @wolfv in [#1329](https://github.com/prefix-dev/pixi/pull/1329) +- Channel priority logic by @ruben-arts in [#1332](https://github.com/prefix-dev/pixi/pull/1332) + +[Full commit history](https://github.com/prefix-dev/pixi/compare/v0.21.0..v0.21.1) + ## [0.21.0] - 2024-05-06 ### ✨ Highlights - This release adds support for configuring PyPI settings globally, to use alternative PyPI indexes and load credentials with keyring. diff --git a/CITATION.cff b/CITATION.cff index f34d82d53..32646cace 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -24,8 +24,8 @@ authors: name-particle: de family-names: Jager email: tdejager89@gmail.com -repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.21.0' -url: 'https://pixi.sh/v0.21.0' +repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.21.1' +url: 'https://pixi.sh/v0.21.1' abstract: >- A cross-platform, language agnostic, package/project management tool for development in virtual environments. diff --git a/Cargo.lock b/Cargo.lock index 9515ec774..b493a88c5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3241,7 +3241,7 @@ dependencies = [ [[package]] name = "pixi" -version = "0.21.0" +version = "0.21.1" dependencies = [ "assert_matches", "async-once-cell", diff --git a/Cargo.toml b/Cargo.toml index 1ebc32d56..cd7e1eddf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pixi" -version = "0.21.0" +version = "0.21.1" description = "A package management and workflow tool" edition = "2021" authors = ["pixi contributors "] diff --git a/docs/advanced/github_actions.md b/docs/advanced/github_actions.md index 17e6c9cdf..9676e665b 100644 --- a/docs/advanced/github_actions.md +++ b/docs/advanced/github_actions.md @@ -15,7 +15,7 @@ We created [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) to ```yaml - uses: prefix-dev/setup-pixi@v0.6.0 with: - pixi-version: v0.21.0 + pixi-version: v0.21.1 cache: true auth-host: prefix.dev auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} diff --git a/install/install.ps1 b/install/install.ps1 index c31dd8d90..902b5269b 100644 --- a/install/install.ps1 +++ b/install/install.ps1 @@ -18,7 +18,7 @@ .LINK https://github.com/prefix-dev/pixi .NOTES - Version: v0.21.0 + Version: v0.21.1 #> param ( [string] $PixiVersion = 'latest', diff --git a/install/install.sh b/install/install.sh index cea694ad4..af19e804b 100644 --- a/install/install.sh +++ b/install/install.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -euo pipefail -# Version: v0.21.0 +# Version: v0.21.1 __wrap__() { diff --git a/schema/schema.json b/schema/schema.json index 209d92b4d..26e8ed727 100644 --- a/schema/schema.json +++ b/schema/schema.json @@ -1,6 +1,6 @@ { "$schema": "http://json-schema.org/draft-07/schema#", - "$id": "https://pixi.sh/v0.21.0/schema/manifest/schema.json", + "$id": "https://pixi.sh/v0.21.1/schema/manifest/schema.json", "title": "`pixi.toml` manifest file", "description": "The configuration for a [`pixi`](https://pixi.sh) project.", "type": "object", @@ -13,7 +13,7 @@ "title": "Schema", "description": "The schema identifier for the project's configuration", "type": "string", - "default": "https://pixi.sh/v0.21.0/schema/manifest/schema.json", + "default": "https://pixi.sh/v0.21.1/schema/manifest/schema.json", "format": "uri-reference" }, "activation": { diff --git a/tbump.toml b/tbump.toml index 7e2130518..992f58702 100644 --- a/tbump.toml +++ b/tbump.toml @@ -1,7 +1,7 @@ github_url = "https://github.com/prefix-dev/pixi" [version] -current = "0.21.0" +current = "0.21.1" # Example of a semver regexp. # Make sure this matches current_version before @@ -19,7 +19,7 @@ regex = ''' [git] # The current version will get updated when tbump is run -message_template = "Bump version: 0.21.0 → {new_version}" +message_template = "Bump version: 0.21.1 → {new_version}" tag_template = "v{new_version}" # For each file to patch, add a [[file]] config