Skip to content

Commit 9cf6047

Browse files
committed
Updating version to 1.17.2
Change-Id: Ia5dda572ccb114d51154401397e0d00cdcde0111
1 parent 332ced0 commit 9cf6047

File tree

9 files changed

+21
-11
lines changed

9 files changed

+21
-11
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION=1.17.1
1+
VERSION=1.17.2

gui/backend/gui_plugin/general.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from mysqlsh.plugin_manager import plugin_function
2525

2626
# Define plugin version
27-
VERSION = "1.17.1"
27+
VERSION = "1.17.2"
2828

2929
@plugin_function('gui.info', shell=True, cli=True, web=True)
3030
def info():

gui/extension/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# MySQL Shell for VS Code Change Log
22

3+
## Changes in 1.17.2+9.1.0
4+
5+
### Additions
6+
7+
-
8+
9+
### Fixes
10+
11+
-
12+
313
## Changes in 1.17.1+9.1.0
414

515
### Fixes

gui/extension/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# MySQL Shell for VS Code 1.17.1+9.1.0
1+
# MySQL Shell for VS Code 1.17.2+9.1.0
22

33
The MySQL Shell for VS Code extension integrates the powerful feature set of MySQL Shell - an advanced MySQL client for developers and DBAs - directly into VS Code.
44

gui/extension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"color": "#2789e1",
88
"theme": "dark"
99
},
10-
"version": "1.17.1",
10+
"version": "1.17.2",
1111
"publisher": "Oracle",
1212
"license": "SEE LICENSE IN LICENSE.txt",
1313
"repository": {

gui/frontend/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mysql-shell-gui",
3-
"version": "1.17.1",
3+
"version": "1.17.2",
44
"publisher": "Oracle",
55
"type": "module",
66
"scripts": {

gui/tools/src/version_handler.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def update_plugin_version(path, version):
9090
lines[index] = f'VERSION = "{version}"\n'
9191
break
9292

93-
with(open(path, 'w')) as file:
93+
with (open(path, 'w')) as file:
9494
file.write(''.join(lines))
9595

9696

@@ -102,9 +102,9 @@ def update_readme_version(e_version, s_version):
102102
with open(VSCODE_EXTENSION_README_PATH) as file:
103103
lines = file.readlines()
104104

105-
lines[0] = f'# MySQL Shell for VS Code {e_version}+{s_version} Preview\n'
105+
lines[0] = f'# MySQL Shell for VS Code {e_version}+{s_version}\n'
106106

107-
with(open(VSCODE_EXTENSION_README_PATH, 'w')) as file:
107+
with (open(VSCODE_EXTENSION_README_PATH, 'w')) as file:
108108
file.write(''.join(lines))
109109

110110

@@ -133,7 +133,7 @@ def update_changelog_version(e_version, s_version):
133133
for line in new_lines:
134134
lines.insert(2, line)
135135

136-
with(open(VSCODE_EXTENSION_CHANGELOG_PATH, 'w')) as file:
136+
with (open(VSCODE_EXTENSION_CHANGELOG_PATH, 'w')) as file:
137137
file.write(''.join(lines))
138138

139139

mds_plugin/general.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from mds_plugin import core, configuration
2828

2929
# Define plugin version
30-
VERSION = "1.17.1"
30+
VERSION = "1.17.2"
3131

3232

3333
@plugin_function('mds.info')

mrs_plugin/lib/general.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
import json
2626

2727
# Define plugin version
28-
VERSION = "1.17.1"
28+
VERSION = "1.17.2"
2929

3030
DB_VERSION = [3, 0, 3]
3131
REQUIRED_ROUTER_VERSION = [8, 1, 0]

0 commit comments

Comments
 (0)