Skip to content

Commit 5c9f3e6

Browse files
committed
Release v5.10.1. [skip ci]
1 parent 4c2239a commit 5c9f3e6

File tree

8 files changed

+26
-12
lines changed

8 files changed

+26
-12
lines changed

PyInstaller/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from PyInstaller.utils.git import get_repo_revision
1919

2020
# Note: Keep this variable as plain string so it could be updated automatically when doing a release.
21-
__version__ = '5.10.0'
21+
__version__ = '5.10.1'
2222

2323
# Absolute path of this package's directory. Save this early so all submodules can use the absolute path. This is
2424
# required for example if the current directory changes prior to loading the hooks.

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ either ``gcc`` or ``clang``) and zlib's development headers already installed.
134134
Support
135135
-------
136136

137-
- Official debugging guide: https://pyinstaller.org/en/v5.10.0/when-things-go-wrong.html
137+
- Official debugging guide: https://pyinstaller.org/en/v5.10.1/when-things-go-wrong.html
138138
- Assorted user contributed help topics: https://github.com/pyinstaller/pyinstaller/wiki
139139
- Web based Q&A forums: https://github.com/pyinstaller/pyinstaller/discussions
140140
- Email based Q&A forums: https://groups.google.com/g/pyinstaller
@@ -146,5 +146,5 @@ Changes in this Release
146146
You can find a detailed list of changes in this release
147147
in the `Changelog`_ section of the manual.
148148

149-
.. _`manual`: https://pyinstaller.org/en/v5.10.0/
150-
.. _`Changelog`: https://pyinstaller.org/en/v5.10.0/CHANGES.html
149+
.. _`manual`: https://pyinstaller.org/en/v5.10.1/
150+
.. _`Changelog`: https://pyinstaller.org/en/v5.10.1/CHANGES.html

doc/CHANGES.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,19 @@ Changelog for PyInstaller
1515

1616
.. towncrier release notes start
1717
18+
5.10.1 (2023-04-14)
19+
-------------------
20+
21+
Bugfix
22+
~~~~~~
23+
24+
* Fix regression on platforms with strict data alignment requirements (such as
25+
linux on ``armhf``/``armv7``), caused by bug in PKG/CArchive generation that
26+
was introduced during the archive writer code cleanup. The regression caused
27+
executable to terminate with ``Bus error`` on the affected platforms, such as
28+
32-bit Debian Buster on Raspberry Pi 4. (:issue:`7566`)
29+
30+
1831
5.10.0 (2023-04-11)
1932
-------------------
2033

doc/CREDITS.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ Thanks goes to all the kind PyInstaller contributors who have contributed
55
new code, bug reports, fixes, comments and ideas. A brief list follows,
66
please let us know if your name is omitted by accident:
77

8+
Contributions to PyInstaller 5.10.1
9+
-----------------------------------
10+
11+
* Rok Mandeljc
12+
* Christian Clauss
13+
814
Contributions to PyInstaller 5.10.0
915
-----------------------------------
1016

doc/pyi-makespec.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Man page generated from reStructuredText.
22
.
3-
.TH "PYI-MAKESPEC" "1" "2023-04-11" "5.10.0" "PyInstaller"
3+
.TH "PYI-MAKESPEC" "1" "2023-04-14" "5.10.1" "PyInstaller"
44
.SH NAME
55
pyi-makespec \- Create a spec file for your PyInstaller project
66
.

doc/pyinstaller.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Man page generated from reStructuredText.
22
.
3-
.TH "PYINSTALLER" "1" "2023-04-11" "5.10.0" "PyInstaller"
3+
.TH "PYINSTALLER" "1" "2023-04-14" "5.10.1" "PyInstaller"
44
.SH NAME
55
pyinstaller \- Configure and build a PyInstaller project in one run
66
.

news/7566.bugfix.rst

Lines changed: 0 additions & 5 deletions
This file was deleted.

release/release.fish

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ set title 'Contributions to PyInstaller '(python setup.py --version)
3333
echo $title >> doc/CREDITS.rst
3434
echo $title | perl -pe 's/./-/g' >> doc/CREDITS.rst
3535
echo '' >> doc/CREDITS.rst
36-
git shortlog -ns (git tag -l)[-1].. | grep -v -w bot | perl -pe 's/^\s+\d+\s+/* /g' >> doc/CREDITS.rst
36+
git shortlog -ns (git tag -l --sort=version:refname)[-1].. | grep -v -w bot | perl -pe 's/^\s+\d+\s+/* /g' >> doc/CREDITS.rst
3737
printf '%s\n' $footer >> doc/CREDITS.rst
3838

3939
# Update docs versions in the README.

0 commit comments

Comments
 (0)