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 7e18f67 commit a1df011Copy full SHA for a1df011
src/theme/__init__.py
@@ -1,4 +1,4 @@
1
-VERSION = (1, 0, 1)
+VERSION = (1, 1, 0)
2
__version__ = '.'.join(str(v) for v in VERSION)
3
4
src/theme/scripts/list-translations
@@ -10,6 +10,9 @@ CROWDIN_BASE_URL = os.environ['CROWDIN_BASE_URL']
10
11
BRANCH = sys.argv[1]
12
13
+if BRANCH == 'stable':
14
+ BRANCH = '7.4.0'
15
+
16
headers = {
17
'Authorization': 'Bearer ' + CROWDIN_TOKEN,
18
'Accept': 'application/json'
0 commit comments