Skip to content

Commit 37adbb2

Browse files
committed
v1.4.1 — Fix get_project_page()
- Migrated from setuptools to hatch - **Bugfix**: When no `accept` argument is passed to `PyPISimple.get_project_page()`, actually fall back to the value supplied on client instantiation, as documented (contributed by [@thatch](https://github.com/thatch))
1 parent ab5f7e8 commit 37adbb2

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
v1.4.1 (in development)
2-
-----------------------
1+
v1.4.1 (2024-01-30)
2+
-------------------
33
- Migrated from setuptools to hatch
44
- **Bugfix**: When no `accept` argument is passed to
55
`PyPISimple.get_project_page()`, actually fall back to the value supplied on

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2018-2023 John Thorvald Wodder II and contributors
3+
Copyright (c) 2018-2024 John Thorvald Wodder II and contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/changelog.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@
33
Changelog
44
=========
55

6-
v1.4.1 (in development)
7-
-----------------------
6+
v1.4.1 (2024-01-30)
7+
-------------------
88
- Migrated from setuptools to hatch
99
- **Bugfix**: When no ``accept`` argument is passed to
1010
`PyPISimple.get_project_page()`, actually fall back to the value supplied on
1111
client instantiation, as documented (contributed by `@thatch
1212
<https://github.com/thatch>`_)
1313

14+
1415
v1.4.0 (2023-11-01)
1516
-------------------
1617
- Support :pep:`708`

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
project = "pypi-simple"
44
author = "John T. Wodder II"
5-
copyright = "2018-2023 John T. Wodder II" # noqa: A001
5+
copyright = "2018-2024 John T. Wodder II" # noqa: A001
66

77
extensions = [
88
"sphinx.ext.autodoc",

src/pypi_simple/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
for more information.
1515
"""
1616

17-
__version__ = "1.4.1.dev1"
17+
__version__ = "1.4.1"
1818
__author__ = "John Thorvald Wodder II"
1919
__author_email__ = "pypi-simple@varonathe.org"
2020
__license__ = "MIT"

0 commit comments

Comments
 (0)