Skip to content

Commit

Permalink
Pre-Release 5.0.0-beta2: appversion & changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Athanasius committed Mar 29, 2021
1 parent 8528f8a commit 9d6e3a5
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
28 changes: 28 additions & 0 deletions ChangeLog.md
@@ -1,6 +1,34 @@
This is the master changelog for Elite Dangerous Market Connector. Entries are in reverse chronological order (latest first).
---

Pre-Release 5.0.0-beta2
===

* Support the 'JournalAlpha' files from the Odyssey Alpha. We've confirmed
any data from these is correctly tagged as 'beta' for the is_beta flag
passed to plugins.

Any data from Odyssey Alpha is sent to EDDN using the test schemas.

No data from Odyssey Alpha is sent to the EDSM or Inara APIs.

* Fix ship loadout export to files to not trip up in the face of file encoding
issues. This relates to the 'Ship Loadout' option on the 'Output' tab of
Settings/Preferences.

Plugin Authors
---

* `config.appversion()` now returns a `semantic_version.Version`. In contexts
where you're expecting a string this should mostly just work. If needs
be wrap it in a `str()`.

* Example plugin
[plugintest](https://github.com/EDCD/EDMarketConnector/tree/main/docs/examples/plugintest)
updated. This includes an example of how to check core EDMC version if needs
be. This example is also in
[PLUGINS.md](https://github.com/EDCD/EDMarketConnector/blob/main/PLUGINS.md#checking-core-edmc-version).

Pre-Release 5.0.0-beta1
===

Expand Down
2 changes: 1 addition & 1 deletion config.py
Expand Up @@ -41,7 +41,7 @@
# <https://semver.org/#semantic-versioning-specification-semver>
# Major.Minor.Patch(-prerelease)(+buildmetadata)
# NB: Do *not* import this, use the functions appversion() and appversion_nobuild()
_static_appversion = '5.0.0-beta1'
_static_appversion = '5.0.0-beta2'
copyright = '© 2015-2019 Jonathan Harris, 2020-2021 EDCD'

update_feed = 'https://raw.githubusercontent.com/EDCD/EDMarketConnector/releases/edmarketconnector.xml'
Expand Down

0 comments on commit 9d6e3a5

Please sign in to comment.