1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-06-05 01:43:16 +03:00

Pre-Release 5.3.0-beta1: appversion & changelog

This commit is contained in:
Athanasius 2021-12-07 11:28:11 +00:00
parent 342edf57d4
commit f3b5f2b4ed
No known key found for this signature in database
GPG Key ID: AE3E527847057C7D
2 changed files with 35 additions and 2 deletions

View File

@ -9,7 +9,7 @@ produce the Windows executables and installer.
--- ---
* We now test against, and package with, Python 3.9.9. * We now test against, and package with, Python 3.10.1.
**As a consequence of this we no longer support Windows 7. **As a consequence of this we no longer support Windows 7.
This is due to This is due to
@ -25,6 +25,39 @@ produce the Windows executables and installer.
in the source (it's not distributed with the Windows installer) for the in the source (it's not distributed with the Windows installer) for the
currently used version in a given branch. currently used version in a given branch.
---
Pre-Release 5.3.0-beta1
===
This is a test release to ensure packaging with Python 3.10.1 is working
correctly. There is also a small change to metadata in any remote web
request we make.
* We now set a custom User-Agent header in all web requests, i.e. to EDDN,
EDSM and the like. This is of the form:
`EDCD-EDMarketConnector-<version>`
Developers
---
We now test against, and package with Python 3.10.1.
We've made no explicit changes to the Python stdlib, or other modules, we
currently offer. However, the newer [py2exe](https://github.com/py2exe/py2exe/)
we now use has decided we no longer need:
- _aynscio.pyd
- _multiprocessing.pyd
- _overlapped.pyd
so those are no longer included in the Windows installers. We are looking into
[including all of Python stdlib](https://github.com/EDCD/EDMarketConnector/issues/1327)
so this would be resolved by that.
If your plugin utilises any module/package that requires per-architecture
libraries then you should check it has Python 3.10 wheels available.
--- ---
Release 5.2.3 Release 5.2.3

View File

@ -33,7 +33,7 @@ appcmdname = 'EDMC'
# <https://semver.org/#semantic-versioning-specification-semver> # <https://semver.org/#semantic-versioning-specification-semver>
# Major.Minor.Patch(-prerelease)(+buildmetadata) # Major.Minor.Patch(-prerelease)(+buildmetadata)
# NB: Do *not* import this, use the functions appversion() and appversion_nobuild() # NB: Do *not* import this, use the functions appversion() and appversion_nobuild()
_static_appversion = '5.3.0-beta0' _static_appversion = '5.3.0-beta1'
_cached_version: Optional[semantic_version.Version] = None _cached_version: Optional[semantic_version.Version] = None
copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD' copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD'