Skip to content

Commit 7d0058f

Browse files
authoredApr 26, 2024
chore: bump to v0.20.1 (#1283)
1 parent 9f1656f commit 7d0058f

File tree

6 files changed

+33
-7
lines changed

6 files changed

+33
-7
lines changed
 

‎CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,32 @@ 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.20.1] - 2024-04-26
9+
### ✨ Highlights
10+
- Big improvements on the pypi-editable installs.
11+
12+
13+
### 📃 Details
14+
#### Fixed
15+
- Editable non-satisfiable by @baszalmstra in [#1251](https://github.com/prefix-dev/pixi/pull/1251)
16+
- Satisfiability with pypi extras by @baszalmstra in [#1253](https://github.com/prefix-dev/pixi/pull/1253)
17+
- Change global install activation script permission from 0o744 -> 0o755 by @zen-xu in [#1250](https://github.com/prefix-dev/pixi/pull/1250)
18+
- Avoid creating Empty TOML tables by @olivier-lacroix in [#1270](https://github.com/prefix-dev/pixi/pull/1270)
19+
- Uses the special-case uv path handling for both built and source by @tdejager in [#1263](https://github.com/prefix-dev/pixi/pull/1263)
20+
- Modify test before attempting to write to .bash_profile in install.sh by @bruchim-cisco in [#1267](https://github.com/prefix-dev/pixi/pull/1267)
21+
- Parse properly 'default' as environment Cli argument by @olivier-lacroix in [#1247](https://github.com/prefix-dev/pixi/pull/1247)
22+
- Apply `schema.json` normalization, add to docs by @bollwyvl in [#1265](https://github.com/prefix-dev/pixi/pull/1265)
23+
- Improve absolute path satisfiability by @tdejager in [#1252](https://github.com/prefix-dev/pixi/pull/1252)
24+
- Improve parse deno error and make task a required field in the cli by @ruben-arts in [#1260](https://github.com/prefix-dev/pixi/pull/1260)
25+
26+
## New Contributors
27+
* @bollwyvl made their first contribution in [#1265](https://github.com/prefix-dev/pixi/pull/1265)
28+
* @bruchim-cisco made their first contribution in [#1267](https://github.com/prefix-dev/pixi/pull/1267)
29+
* @zen-xu made their first contribution in [#1250](https://github.com/prefix-dev/pixi/pull/1250)
30+
31+
[Full commit history](https://github.com/prefix-dev/pixi/compare/v0.20.0..v0.20.1)
32+
33+
834
## [0.20.0] - 2024-04-19
935
### ✨ Highlights
1036

‎CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ authors:
2424
name-particle: de
2525
family-names: Jager
2626
email: tdejager89@gmail.com
27-
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.20.0'
28-
url: 'https://pixi.sh/v0.20.0'
27+
repository-code: 'https://github.com/prefix-dev/pixi/releases/tag/v0.20.1'
28+
url: 'https://pixi.sh/v0.20.1'
2929
abstract: >-
3030
A cross-platform, language agnostic, package/project
3131
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
@@ -1,6 +1,6 @@
11
[package]
22
name = "pixi"
3-
version = "0.20.0"
3+
version = "0.20.1"
44
description = "A package management and workflow tool"
55
edition = "2021"
66
authors = ["pixi contributors <hi@prefix.dev>"]

‎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/setup-pixi@v0.6.0
1717
with:
18-
pixi-version: v0.20.0
18+
pixi-version: v0.20.1
1919
cache: true
2020
auth-host: prefix.dev
2121
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}

‎tbump.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/prefix-dev/pixi"
22

33
[version]
4-
current = "0.20.0"
4+
current = "0.20.1"
55

66
# Example of a semver regexp.
77
# Make sure this matches current_version before
@@ -19,7 +19,7 @@ regex = '''
1919

2020
[git]
2121
# The current version will get updated when tbump is run
22-
message_template = "Bump version: 0.20.0 → {new_version}"
22+
message_template = "Bump version: 0.20.1 → {new_version}"
2323
tag_template = "v{new_version}"
2424

2525
# For each file to patch, add a [[file]] config

0 commit comments

Comments
 (0)