We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 622ca80 commit fdf2b83Copy full SHA for fdf2b83
.gitignore
@@ -74,3 +74,7 @@ nosetests.xml
74
75
# VS Code
76
.vscode
77
+
78
+# R
79
+.Rproj.user
80
+.Rhistory
src/pycropml/version.py
@@ -5,13 +5,13 @@
5
# {# pkglts, version
6
# -*- coding: utf-8 -*-
7
8
-MAJOR = 1
+MAJOR = 2
9
"""(int) Version major component."""
10
11
-MINOR = 3
+MINOR = 0
12
"""(int) Version minor component."""
13
14
-POST = 3
+POST = 0
15
"""(int) Version post or bugfix component."""
16
17
__version__ = ".".join([str(s) for s in (MAJOR, MINOR, POST)])
0 commit comments