Skip to content

Commit 58207d2

Browse files
Docs
1 parent 2b45187 commit 58207d2

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## Unreleased
44

5+
### New features
6+
7+
* [`Update-Scripts.ps1`](scripts/Update-Scripts.ps1) to download a release from GitHub.
8+
9+
### Fixes
10+
11+
* [`Set-VenvOutsideProject.ps1`](scripts/Set-VenvOutsideProject.ps1) now works correctly also for paths including whitespace. Requires `uv >= 0.8.18`.
12+
513
## scripts 0.1.0 - 2025-09-15
614

715
[Download](https://github.com/angelo-peronio/scripts/releases/download/v0.1.0/scripts-v0.1.0.zip)

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![ci](https://github.com/angelo-peronio/scripts/actions/workflows/ci.yaml/badge.svg)](https://github.com/angelo-peronio/scripts/actions/workflows/ci.yaml)
55
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/angelo-peronio/scripts/master.svg)](https://results.pre-commit.ci/latest/github/angelo-peronio/scripts/master)
66

7-
A collection of PowerShell scripts to streamline common tasks during the development of projects written in Python or using tools written in Python ([pre-commit](https://pre-commit.com/), [Bump My Version](https://callowayproject.github.io/bump-my-version/), [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/), …), inspired by [Scripts to Rule Them All](https://github.blog/engineering/scripts-to-rule-them-all/). Requires [`uv`](https://docs.astral.sh/uv).
7+
A collection of PowerShell scripts to streamline common tasks during the development of projects written in Python or using tools written in Python ([pre-commit](https://pre-commit.com/), [Bump My Version](https://callowayproject.github.io/bump-my-version/), [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/), …), inspired by [Scripts to Rule Them All](https://github.blog/engineering/scripts-to-rule-them-all/). Requires [`uv`](https://docs.astral.sh/uv) 0.8.18+.
88

99
## Usage
1010

@@ -26,6 +26,7 @@ A collection of PowerShell scripts to streamline common tasks during the develop
2626
* [`Install-PreCommitHooks.ps1`](scripts/Install-PreCommitHooks.ps1) Install [pre-commit](https://pre-commit.com/) hooks.
2727
* [`Update-PreCommitHooks.ps1`](scripts/Update-PreCommitHooks.ps1) Update pre-commit hooks.
2828
* [`Set-VenvOutsideProject.ps1`](scripts/Set-VenvOutsideProject.ps1) Tell [`uv`](https://docs.astral.sh/uv) to store the Python virtual environment outside the project folder. Useful to avoid [problems](https://github.com/astral-sh/uv/issues/7906) with Microsoft OneDrive.
29+
* [`Update-Scripts.ps1`](scripts/Update-Scripts.ps1) Upgrade (or downgrade) the scripts to the specified released version. Requires [robocopy](https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy).
2930

3031
### Publishing
3132

scripts/Update-Scripts.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Update the scripts.
44
55
.DESCRIPTION
6-
Upgrade (or downgrade) the scripts to the specified version.
6+
Upgrade (or downgrade) the scripts to the specified released version.
77
Requires robocopy <https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy>
88
99
.EXAMPLE

0 commit comments

Comments
 (0)