Skip to content

Commit fc3e1a8

Browse files
authored
chore: version to 0.41.3 (#3117)
1 parent 34efea3 commit fc3e1a8

File tree

13 files changed

+25
-14
lines changed

13 files changed

+25
-14
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ 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.41.3] - 2025-02-12
9+
#### Changed
10+
- Added `--dry-run` flag to pixi run by @noamgot in [#3107](https://github.com/prefix-dev/pixi/pull/3107)
11+
12+
#### Fixed
13+
- Make prefix creation during solve thread-safe by @nichmor in [#3099](https://github.com/prefix-dev/pixi/pull/3099)
14+
- Passing a file as `--manifest-path` by @tdejager in [#3111](https://github.com/prefix-dev/pixi/pull/3111)
15+
16+
#### New Contributors
17+
* @noamgot made their first contribution in [#3107](https://github.com/prefix-dev/pixi/pull/3107)
18+
819
### [0.41.2] - 2025-02-11
920
#### ✨ Highlights
1021

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
33-
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.41.2'
34-
url: 'https://pixi.sh/v0.41.2'
33+
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.41.3'
34+
url: 'https://pixi.sh/v0.41.3'
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.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ license.workspace = true
180180
name = "pixi"
181181
readme.workspace = true
182182
repository.workspace = true
183-
version = "0.41.2"
183+
version = "0.41.3"
184184

185185
[features]
186186
default = ["online_tests", "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.41.2",
19+
None => "0.41.3",
2020
};
2121
pub const PREFIX_FILE_NAME: &str = "pixi_env_prefix";
2222
pub const ENVIRONMENTS_DIR: &str = "envs";

docs/advanced/github_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ We created [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) to
1515
```yaml
1616
- uses: prefix-dev/[email protected]
1717
with:
18-
pixi-version: v0.41.2
18+
pixi-version: v0.41.3
1919
cache: true
2020
auth-host: prefix.dev
2121
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}

docs/advanced/production_deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ It also makes use of `pixi shell-hook` to not rely on pixi being installed in th
3333
For more examples, take a look at [pavelzw/pixi-docker-example](https://github.com/pavelzw/pixi-docker-example).
3434

3535
```Dockerfile
36-
FROM ghcr.io/prefix-dev/pixi:0.41.2 AS build
36+
FROM ghcr.io/prefix-dev/pixi:0.41.3 AS build
3737

3838
# copy source code, pixi.toml and pixi.lock to the container
3939
WORKDIR /app

docs/ide_integration/devcontainer.md

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

14-
ARG PIXI_VERSION=v0.41.2
14+
ARG PIXI_VERSION=v0.41.3
1515

1616
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" \
1717
&& chmod +x /usr/local/bin/pixi \

install/install.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
.LINK
1919
https://github.com/prefix-dev/pixi
2020
.NOTES
21-
Version: v0.41.2
21+
Version: v0.41.3
2222
#>
2323
param (
2424
[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
#!/usr/bin/env bash
22
set -euo pipefail
3-
# Version: v0.41.2
3+
# Version: v0.41.3
44

55
__wrap__() {
66

0 commit comments

Comments
 (0)