mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-16 22:10:26 +00:00
commit
fe23eeb181
4 changed files with 21 additions and 5 deletions
9
.github/workflows/release-files.yml
vendored
9
.github/workflows/release-files.yml
vendored
|
|
@ -38,13 +38,18 @@ jobs:
|
|||
run: >
|
||||
python3 -m hatchling build
|
||||
|
||||
- name: Generate Sigstore signatures
|
||||
uses: sigstore/gh-action-sigstore-python@9310933b45d7dfc2fe40c1d701ac114548c28d31
|
||||
with:
|
||||
inputs: dist/*
|
||||
|
||||
- name: Check distribution files
|
||||
run: >
|
||||
twine check dist/*
|
||||
twine check dist/*.{tar.gz,whl}
|
||||
|
||||
- name: Calculate checksums for distribution files
|
||||
run: >
|
||||
sha256sum dist/*
|
||||
sha256sum dist/*.{tar.gz,whl}
|
||||
|
||||
- name: Add distribution files to release
|
||||
run: >
|
||||
|
|
|
|||
|
|
@ -1,9 +1,20 @@
|
|||
10.x
|
||||
10.3.0 (released 18.09.2023)
|
||||
|
||||
Features:
|
||||
- TextLogger message wrapping is configurable using wraplength
|
||||
|
||||
Changes:
|
||||
- Minimum Python version required is 3.8
|
||||
- HTTP redirect causes a warning, http-redirected
|
||||
- Ignored warning messages are logged as information
|
||||
- Installing from git archives is re-enabled
|
||||
- Support for checking NNTP and Telnet links is removed
|
||||
|
||||
Fixes
|
||||
- -p/--password was being ignored
|
||||
- FTP checker was raising a TypeError
|
||||
- FTP checker was ignoring maxfilesizedownload
|
||||
- Documentation updates
|
||||
|
||||
|
||||
10.2.1 (released 05.12.2022)
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
Upgrading
|
||||
=========
|
||||
|
||||
Migrating from 10.2 to 10.x
|
||||
Migrating from 10.2 to 10.3
|
||||
---------------------------
|
||||
Python 3.8 or newer is required.
|
||||
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ dependencies = [
|
|||
requires = [
|
||||
"hatchling >= 1.8.0",
|
||||
"hatch-vcs",
|
||||
"setuptools-scm >= 7.0.5",
|
||||
"setuptools-scm >= 7.1.0",
|
||||
]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue