From 2a86b6ccf7a7fadd342589760bc647d5539e9c78 Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 5 Jul 2024 15:42:57 +0200 Subject: [PATCH 1/2] chore: version to 0.25.0 --- CHANGELOG.md | 42 +++++++++++++++++++++++++++++++++ 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 ++-- src/cli/mod.rs | 2 +- tbump.toml | 4 ++-- 10 files changed, 54 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 127a95ecd..52b83b11c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,48 @@ 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.25.0] - 2024-07-05 +### ✨ Highlights +- `pixi exec` command, execute commands in temporary environments, useful for testing in short-lived sessions. +- We've bumped the default system-requirements to higher defaults: glibc (2.17 -> 2.28), osx64 (10.15 -> 13.0), osx-arm64 (11.0 -> 13.0). Let us know if this causes any issues. + + +### 📃 Details + +#### Changed + +- Bump system requirements by @wolfv in [#1553](https://github.com/prefix-dev/pixi/pull/1553) +- Better error when exec is missing a cmd by @tdejager in [#1565](https://github.com/prefix-dev/pixi/pull/1565) +- Make exec use authenticated client by @tdejager in [#1568](https://github.com/prefix-dev/pixi/pull/1568) + + +#### Documentation + +- Automatic updating using github actions by @pavelzw in [#1456](https://github.com/prefix-dev/pixi/pull/1456) +- Describe the --change-ps1 option for pixi shell by @Yura52 in [#1536](https://github.com/prefix-dev/pixi/pull/1536) +- Add some other quantco repos by @pavelzw in [#1542](https://github.com/prefix-dev/pixi/pull/1542) +- Add example using `geos-rs` by @Hofer-Julian in [#1563](https://github.com/prefix-dev/pixi/pull/1563) + +#### Fixed + +- Tiny error in basic_usage.md by @Sjouks in [#1513](https://github.com/prefix-dev/pixi/pull/1513) +- Lazy initialize client by @baszalmstra in [#1511](https://github.com/prefix-dev/pixi/pull/1511) +- URL typos in rtd examples by @kklein in [#1538](https://github.com/prefix-dev/pixi/pull/1538) +- Fix satisfiability for short sha hashes by @tdejager in [#1530](https://github.com/prefix-dev/pixi/pull/1530) +- Wrong path passed to dynamic check by @tdejager in [#1552](https://github.com/prefix-dev/pixi/pull/1552) +- Don't error if no tasks is available on platform by @hoxbro in [#1550](https://github.com/prefix-dev/pixi/pull/1550) + + +#### Refactor + +- Add to use update code by @baszalmstra in [#1508](https://github.com/prefix-dev/pixi/pull/1508) + + +## New Contributors +* @kklein made their first contribution in [#1538](https://github.com/prefix-dev/pixi/pull/1538) +* @Yura52 made their first contribution in [#1536](https://github.com/prefix-dev/pixi/pull/1536) +* @Sjouks made their first contribution in [#1513](https://github.com/prefix-dev/pixi/pull/1513) + ## [0.24.2] - 2024-06-14 #### Documentation - Add readthedocs examples by @bollwyvl in [#1423](https://github.com/prefix-dev/pixi/pull/1423) diff --git a/CITATION.cff b/CITATION.cff index 5f867dd7f..6cc37c9e4 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.24.2' -url: 'https://pixi.sh/v0.24.2' +repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.25.0' +url: 'https://pixi.sh/v0.25.0' abstract: >- A cross-platform, language agnostic, package/project management tool for development in virtual environments. diff --git a/Cargo.lock b/Cargo.lock index 50e299718..bd24aeac6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3282,7 +3282,7 @@ dependencies = [ [[package]] name = "pixi" -version = "0.24.2" +version = "0.25.0" dependencies = [ "ahash 0.8.11", "assert_matches", diff --git a/Cargo.toml b/Cargo.toml index 5b0517c34..bc8375099 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pixi" -version = "0.24.2" +version = "0.25.0" 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 b1b80411a..71b56e2e8 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.8.0 with: - pixi-version: v0.24.2 + pixi-version: v0.25.0 cache: true auth-host: prefix.dev auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} diff --git a/install/install.ps1 b/install/install.ps1 index 70d4914e0..68cafff1f 100644 --- a/install/install.ps1 +++ b/install/install.ps1 @@ -18,7 +18,7 @@ .LINK https://github.com/prefix-dev/pixi .NOTES - Version: v0.24.2 + Version: v0.25.0 #> param ( [string] $PixiVersion = 'latest', diff --git a/install/install.sh b/install/install.sh index 9a9191e56..90620da17 100644 --- a/install/install.sh +++ b/install/install.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -euo pipefail -# Version: v0.24.2 +# Version: v0.25.0 __wrap__() { diff --git a/schema/schema.json b/schema/schema.json index 23dad3ff9..b75cacf28 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.24.2/schema/manifest/schema.json", + "$id": "https://pixi.sh/v0.25.0/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.24.2/schema/manifest/schema.json", + "default": "https://pixi.sh/v0.25.0/schema/manifest/schema.json", "format": "uri-reference" }, "activation": { diff --git a/src/cli/mod.rs b/src/cli/mod.rs index 5930e3cfb..ff9a1de4c 100644 --- a/src/cli/mod.rs +++ b/src/cli/mod.rs @@ -39,7 +39,7 @@ pub mod upload; #[command( version, about = " -Pixi [version 0.24.2] - Developer Workflow and Environment Management for Multi-Platform, Language-Agnostic Projects. +Pixi [version 0.25.0] - Developer Workflow and Environment Management for Multi-Platform, Language-Agnostic Projects. Pixi is a versatile developer workflow tool designed to streamline the management of your project's dependencies, tasks, and environments. Built on top of the Conda ecosystem, Pixi offers seamless integration with the PyPI ecosystem. diff --git a/tbump.toml b/tbump.toml index dcb0e1c47..7e2ae0d63 100644 --- a/tbump.toml +++ b/tbump.toml @@ -1,7 +1,7 @@ github_url = "https://github.com/prefix-dev/pixi" [version] -current = "0.24.2" +current = "0.25.0" # 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.24.2 → {new_version}" +message_template = "Bump version: 0.25.0 → {new_version}" tag_template = "v{new_version}" # For each file to patch, add a [[file]] config From 3f9e2d45fe03156246d8cb761fbd5bbc19f5964c Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Fri, 5 Jul 2024 16:05:38 +0200 Subject: [PATCH 2/2] docs: update changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52b83b11c..58ed0b24f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.25.0] - 2024-07-05 ### ✨ Highlights - `pixi exec` command, execute commands in temporary environments, useful for testing in short-lived sessions. -- We've bumped the default system-requirements to higher defaults: glibc (2.17 -> 2.28), osx64 (10.15 -> 13.0), osx-arm64 (11.0 -> 13.0). Let us know if this causes any issues. +- We've bumped the default system-requirements to higher defaults: glibc (2.17 -> 2.28), osx64 (10.15 -> 13.0), osx-arm64 (11.0 -> 13.0). Let us know if this causes any issues. To keep the previous values please use a `system-requirements` table, this is explained [here](https://pixi.sh/latest/reference/project_configuration/#the-system-requirements-table) ### 📃 Details