Skip to content

Commit

Permalink
- prepare release 4.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dataflake committed Oct 31, 2022
1 parent 4bc05a6 commit 9fb8bfc
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 7 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ These are all the changes in Zope 4, starting with the alpha releases.
The change log for the previous version, Zope 2.13, is at
https://zope.readthedocs.io/en/2.13/CHANGES.html

4.8.3 (unreleased)
4.8.3 (2022-10-31)
------------------

- Update dependencies to the latest releases for each supported Python version.
Expand All @@ -26,9 +26,11 @@ https://zope.readthedocs.io/en/2.13/CHANGES.html
- Decode basic authentication header as utf-8, not latin1 anymore
(`#1061 <https://github.com/zopefoundation/Zope/issues/1061>`_).

- Make ``ZPublisher.utils.basic_auth_encode`` support non-ascii strings on Python 2
- Make ``ZPublisher.utils.basic_auth_encode`` support non-ascii strings on
Python 2
(`#1062 <https://github.com/zopefoundation/Zope/issues/1062>`_).


4.8.2 (2022-06-01)
------------------

Expand Down
4 changes: 3 additions & 1 deletion constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ zope.contenttype==4.5.0
zope.datetime==4.3.0
zope.deferredimport==4.4
zope.deprecation==4.4.0
zope.dottedname==4.3
zope.dottedname==4.3; python_version == '2.7'
zope.dottedname==4.3; python_version == '3.5'
zope.dottedname==5.0; python_version > '3.5'
zope.event==4.5.0
zope.exceptions==4.5
zope.filerepresentation==5.0.0
Expand Down
6 changes: 4 additions & 2 deletions requirements-full.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Zope==<5
Zope==4.8.3
AccessControl==4.3
Acquisition==4.10
AuthEncoding==4.3
Expand Down Expand Up @@ -72,7 +72,9 @@ zope.contenttype==4.5.0
zope.datetime==4.3.0
zope.deferredimport==4.4
zope.deprecation==4.4.0
zope.dottedname==4.3
zope.dottedname==4.3; python_version == '2.7'
zope.dottedname==4.3; python_version == '3.5'
zope.dottedname==5.0; python_version > '3.5'
zope.event==4.5.0
zope.exceptions==4.5
zope.filerepresentation==5.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def _read_file(filename):
README = _read_file('README.rst')
CHANGES = _read_file('CHANGES.rst')

version = '4.8.3.dev0'
version = '4.8.3'


setup(
Expand Down
2 changes: 1 addition & 1 deletion versions-prod.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Version pins for required and commonly used dependencies.

[versions]
Zope = <5
Zope = 4.8.3
Zope2 = 4.0
# AccessControl 5+ no longer supports Zope 4.
AccessControl = 4.3
Expand Down

0 comments on commit 9fb8bfc

Please sign in to comment.