Skip to content

Commit 4c199f5

Browse files
committed
Change version to 1.22
1 parent eddb1a4 commit 4c199f5

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "uv_build"
44

55
[project]
66
name = "lain-upload"
7-
version = "1.21"
7+
version = "1.22"
88
description = "A simple CLI file uploader for multiple file-hosting services, with optional clipboard copy."
99
readme = "README.md"
1010
authors = [{ name = "NecRaul", email = "necraul@kuroneko.dev" }]

src/lain_upload/uploader/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def upload(self):
2020
self._done_printed = False
2121
file_path = self._get_file_path()
2222
headers = {
23-
"User-Agent": "lain-upload/1.21 (https://github.com/NecRaul/lain-upload)",
23+
"User-Agent": "lain-upload/1.22 (https://github.com/NecRaul/lain-upload)",
2424
}
2525
headers.update(self._build_headers())
2626
with file_path.open("rb") as file:

src/lain_upload/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
__version__ = importlib.metadata.version("lain_upload")
55

66
except importlib.metadata.PackageNotFoundError:
7-
__version__ = "1.21"
7+
__version__ = "1.22"

tests/test_upload.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def _assert_uploaded_url(
8383
url,
8484
timeout=30,
8585
headers={
86-
"User-Agent": "lain-upload-tests/1.21 (https://github.com/NecRaul/lain-upload)"
86+
"User-Agent": "lain-upload-tests/1.22 (https://github.com/NecRaul/lain-upload)"
8787
},
8888
)
8989
response.raise_for_status()

uv.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.

0 commit comments

Comments
 (0)