You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added docs for peng3d.i18n module
- Bumped version from 1.9.0a1 to 1.10.0
- Updated versioning schema to prevent PyPI from marking all releases as beta
- Updated tox version in use
- Added official support for Python 3.5 and 3.6, 3.6 is now the main version
Copy file name to clipboardExpand all lines: peng3d/version.py
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -24,11 +24,10 @@
24
24
25
25
__all__= ["VERSION","RELEASE"]
26
26
27
-
VERSION="1.9.0a1"
27
+
VERSION="1.10.0"
28
28
"""
29
-
Full version number of format ``MAJOR.MINOR.BUGFIX(a|b|pre)SUBRELEASE`` where major is increased only on very major feature changes.
29
+
Full version number of format ``MAJOR.MINOR.BUGFIX`` where major is increased only on very major feature changes.
30
30
Minor is changed if a new feature is introduced or an API change is made, while bugfix only changes if an important fix for a bug needs to be provided before the next release.
31
-
Either a, b, or pre follows depending on the type of release, e.g. a for alpha, b for beta and pre for prereleases.
32
31
33
32
Used to display the version in the title of the documentation.
34
33
@@ -38,9 +37,9 @@
38
37
39
38
"""
40
39
41
-
RELEASE="1.9.0"
40
+
RELEASE="1.10.0"
42
41
"""
43
-
Same as :py:data:`VERSION` but without the subrelease.
42
+
Currently the same as :py:data:`VERSION`\ .
44
43
45
44
Used to display the version on the top-right of the documentation.
0 commit comments