Skip to content

Commit

Permalink
Bump NVDA version for threshold to 2019.3.0 and also set backwards co…
Browse files Browse the repository at this point in the history
…mpat to the same.

We already know there will be 2019.2 before threshold, but this may need to be bumpt to 2019.4.0 if we end up doing a 2019.3 off master as well.
  • Loading branch information
michaelDCurran committed May 15, 2019
1 parent 367fc48 commit 8995288
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion source/addonAPIVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,13 @@
"""

CURRENT = (buildVersion.version_year, buildVersion.version_major, buildVersion.version_minor)
BACK_COMPAT_TO = (0, 0, 0)
BACK_COMPAT_TO = (2019, 3, 0)
"""
As BACK_COMPAT_TO is incremented, the changed / removed parts / or reasoning should be added below.
EG: (x, y, z): Large changes to speech.py
---
(0, 0, 0): API version zero, used to signify addons released prior to API version checks.
(2019, 3, 0): speech refactor, Python 3
"""

#: Compiled regular expression to match an addon API version string.
Expand Down
2 changes: 1 addition & 1 deletion source/buildVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def formatVersionForGUI(year, major, minor):
# Otherwise, py2exe will break.
name="NVDA"
version_year=2019
version_major=2
version_major=3
version_minor=0
version_build=0
version=_formatDevVersionString()
Expand Down

0 comments on commit 8995288

Please sign in to comment.