Skip to content

Commit c613168

Browse files
authored
chore: version to 0.62.2 (#5186)
1 parent 1e8d859 commit c613168

File tree

12 files changed

+22
-13
lines changed

12 files changed

+22
-13
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
### [0.62.2] - 2025-12-22
9+
#### ✨ Highlights
10+
This is a small patch release fixing issues with source packages and caching.
11+
12+
#### Fixed
13+
14+
- Include variants when calculating cache key by @nichmor in [#5167](https://github.com/prefix-dev/pixi/pull/5167)
15+
- Source packages with git source were always out-of-date by @baszalmstra in [#5178](https://github.com/prefix-dev/pixi/pull/5178)
16+
817
### [0.62.1] - 2025-12-18
918
#### ✨ Highlights
1019

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ authors:
3030
- given-names: Julian
3131
family-names: Hofer
3232
email: julian.hofer@protonmail.com
33-
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.62.1'
34-
url: 'https://pixi.sh/v0.62.1'
33+
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.62.2'
34+
url: 'https://pixi.sh/v0.62.2'
3535
abstract: >-
3636
A cross-platform, language agnostic, package/project
3737
management tool for development in virtual environments.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/pixi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license.workspace = true
77
name = "pixi"
88
readme.workspace = true
99
repository.workspace = true
10-
version = "0.62.1"
10+
version = "0.62.2"
1111

1212
[features]
1313
default = ["rustls-tls"]

crates/pixi_consts/src/consts.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub const PYPROJECT_MANIFEST: &str = "pyproject.toml";
1616
pub const CONFIG_FILE: &str = "config.toml";
1717
pub const PIXI_VERSION: &str = match option_env!("PIXI_VERSION") {
1818
Some(v) => v,
19-
None => "0.62.1",
19+
None => "0.62.2",
2020
};
2121
pub const PREFIX_FILE_NAME: &str = "pixi_env_prefix";
2222
pub const ENVIRONMENTS_DIR: &str = "envs";

docs/integration/ci/github_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We created [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) to
1010
```yaml
1111
- uses: prefix-dev/setup-pixi@v0.9.2
1212
with:
13-
pixi-version: v0.62.1
13+
pixi-version: v0.62.2
1414
cache: true
1515
auth-host: prefix.dev
1616
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}

docs/integration/editor/vscode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Then, create the following two files in the `.devcontainer` directory:
2828
```dockerfile title=".devcontainer/Dockerfile"
2929
FROM mcr.microsoft.com/devcontainers/base:jammy
3030

31-
ARG PIXI_VERSION=v0.62.1
31+
ARG PIXI_VERSION=v0.62.2
3232

3333
RUN curl -L -o /usr/local/bin/pixi -fsSL --compressed "https://github.com/prefix-dev/pixi/releases/download/${PIXI_VERSION}/pixi-$(uname -m)-unknown-linux-musl" \
3434
&& chmod +x /usr/local/bin/pixi \

install/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
.LINK
2323
https://github.com/prefix-dev/pixi
2424
.NOTES
25-
Version: v0.62.1
25+
Version: v0.62.2
2626
#>
2727
param (
2828
[string] $PixiVersion = 'latest',

install/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/sh
22
set -eu
3-
# Version: v0.62.1
3+
# Version: v0.62.2
44

55
__wrap__() {
66
# Function to mask username and password in URLs for safe printing

schema/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://pixi.sh/v0.62.1/schema/manifest/schema.json",
3+
"$id": "https://pixi.sh/v0.62.2/schema/manifest/schema.json",
44
"title": "`pixi.toml` manifest file",
55
"description": "The configuration for a [`pixi`](https://pixi.sh) project.",
66
"type": "object",
@@ -10,7 +10,7 @@
1010
"title": "Schema",
1111
"description": "The schema identifier for the project's configuration",
1212
"type": "string",
13-
"default": "https://pixi.sh/v0.62.1/schema/manifest/schema.json",
13+
"default": "https://pixi.sh/v0.62.2/schema/manifest/schema.json",
1414
"format": "uri-reference"
1515
},
1616
"activation": {

0 commit comments

Comments
 (0)