Skip to content

Commit 0c91a60

Browse files
authored
Release v1.0.1
2 parents cd0516a + 44a5e5b commit 0c91a60

10 files changed

Lines changed: 290 additions & 256 deletions

File tree

.bumper.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tool.bumper]
2-
current_version = "1.0.0"
2+
current_version = "1.0.1"
33
versioning_type = "semver"
44

55
[[tool.bumper.files]]

.github/workflows/lint_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
python-version-file: "pyproject.toml"
2222

2323
- name: Install uv
24-
uses: astral-sh/setup-uv@v7
24+
uses: astral-sh/setup-uv@v8.0.0
2525
with:
2626
version: "0.10.x"
2727
enable-cache: true
@@ -62,7 +62,7 @@ jobs:
6262
python-version: ${{ matrix.python-version }}
6363

6464
- name: Install uv
65-
uses: astral-sh/setup-uv@v7
65+
uses: astral-sh/setup-uv@v8.0.0
6666
with:
6767
version: "0.10.x"
6868
enable-cache: true
@@ -98,7 +98,7 @@ jobs:
9898
python-version-file: "pyproject.toml"
9999

100100
- name: Pull coverage workflow artifacts
101-
uses: actions/download-artifact@v7
101+
uses: actions/download-artifact@v8
102102
with:
103103
path: cov_cache/
104104

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v6
1616

1717
- name: Install uv
18-
uses: astral-sh/setup-uv@v7
18+
uses: astral-sh/setup-uv@v8.0.0
1919
with:
2020
version: "0.10.x"
2121
enable-cache: true

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ ci:
33

44
repos:
55
- repo: https://github.com/psf/black
6-
rev: 26.1.0
6+
rev: 26.3.1
77
hooks:
88
- id: black
99
- repo: https://github.com/pycqa/isort
10-
rev: 8.0.0
10+
rev: 8.0.1
1111
hooks:
1212
- id: isort
1313
name: isort
@@ -36,10 +36,10 @@ repos:
3636
- id: python-check-blanket-type-ignore
3737
- id: python-use-type-annotations
3838
- repo: https://github.com/astral-sh/ruff-pre-commit
39-
rev: v0.15.2
39+
rev: v0.15.8
4040
hooks:
4141
- id: ruff-check
4242
- repo: https://github.com/rvben/rumdl-pre-commit
43-
rev: v0.1.23
43+
rev: v0.1.64
4444
hooks:
4545
- id: rumdl

CHANGELOG.md

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

33
Versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.html) (`<major>`.`<minor>`.`<patch>`)
44

5+
## [v1.0.1]
6+
7+
### Changed
8+
9+
* (Internal) Replace deprecated `typer-slim` dependency with `typer`
10+
511
## `[v1.0.0]`
612

713
### Changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ Wheels are built in CI for each released version; the latest release can be foun
2020
You can confirm proper installation via the `wheely_bucket` CLI:
2121
<!-- [[[cog
2222
import cog
23+
import os
2324
from subprocess import PIPE, run
24-
out = run(["wheely_bucket", "--help"], stdout=PIPE, encoding="ascii")
25+
out = run(["wheely_bucket", "--help"], stdout=PIPE, encoding="ascii", env={**os.environ, "TYPER_USE_RICH": "0"})
2526
cog.out(
2627
f"\n```text\n$ wheely_bucket --help\n{out.stdout.rstrip()}\n```\n\n"
2728
)
@@ -54,8 +55,9 @@ For both entry points, `python-version` and `platform` allow specification of mu
5455
Manual package specification is accomplished via the `wheely_bucket package` command:
5556
<!-- [[[cog
5657
import cog
58+
import os
5759
from subprocess import PIPE, run
58-
out = run(["wheely_bucket", "package", "--help"], stdout=PIPE, encoding="ascii")
60+
out = run(["wheely_bucket", "package", "--help"], stdout=PIPE, encoding="ascii", env={**os.environ, "TYPER_USE_RICH": "0"})
5961
cog.out(
6062
f"\n```text\n$ wheely_bucket package --help\n{out.stdout.rstrip()}\n```\n\n"
6163
)
@@ -91,8 +93,9 @@ Options:
9193
Project lockfile specification is accomplished via the `wheely_bucket project` command:
9294
<!-- [[[cog
9395
import cog
96+
import os
9497
from subprocess import PIPE, run
95-
out = run(["wheely_bucket", "project", "--help"], stdout=PIPE, encoding="ascii")
98+
out = run(["wheely_bucket", "project", "--help"], stdout=PIPE, encoding="ascii", env={**os.environ, "TYPER_USE_RICH": "0"})
9699
cog.out(
97100
f"\n```text\n$ wheely_bucket project --help\n{out.stdout.rstrip()}\n```\n\n"
98101
)

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "wheely-bucket"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "Cache wheels for your locked dependencies"
55
license = "MIT"
66
license-files = ["LICENSE"]
@@ -27,7 +27,7 @@ dependencies = [
2727
"httpx~=0.28",
2828
"packaging>=25.0",
2929
"pip>=25.2",
30-
"typer-slim~=0.17",
30+
"typer~=0.24",
3131
]
3232

3333
[project.urls]
@@ -96,5 +96,5 @@ module-name = "wheely_bucket"
9696
module-root = ""
9797

9898
[build-system]
99-
requires = ["uv_build"]
99+
requires = ["uv_build>=0.11.2,<0.12"]
100100
build-backend = "uv_build"

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ commands = coverage erase
3939
commands = cog -r README.md
4040
deps =
4141
cogapp
42-
typer-slim
42+
typer

uv.lock

Lines changed: 264 additions & 239 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

wheely_bucket/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import httpx
44

5-
__version__ = "1.0.0"
5+
__version__ = "1.0.1"
66
__url__ = "https://github.com/sco1/wheely-bucket"
77

88
USER_AGENT = (

0 commit comments

Comments
 (0)