Skip to content

Commit

Permalink
Upgrading versions and adding osx arm64 runtime (#80)
Browse files Browse the repository at this point in the history
Upgrading version to 0.2.2
Changing mysqltoolsservice version to 1.6.1-mysql
Adding osx arm64 runtime
Removing windows x86 runtime
  • Loading branch information
rishky-msft authored Oct 11, 2022
1 parent 36e1748 commit 8821dbb
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "azuredatastudio-mysql",
"displayName": "MySQL",
"version": "0.2.1",
"version": "0.2.2",
"publisher": "Microsoft",
"description": "%mysql.description%",
"aiKey": "AIF-5574968e-856d-40d2-af67-c89a14e76412",
Expand Down
4 changes: 2 additions & 2 deletions src/config.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"downloadUrl": "https://github.com/microsoft/pgtoolsservice/releases/download/{#version#}/mysqltoolsservice-{#fileName#}",
"version": "v1.6.0-mysql",
"version": "v1.6.1-mysql",
"downloadFileNames": {
"Windows_64": "win-x64.zip",
"Windows_86": "win-x86.zip",
"OSX": "osx.tar.gz",
"OSX_ARM64": "osx-arm64.tar.gz",
"Linux": "linux-x64.tar.gz",
"Ubuntu_22": "ubuntu22-x64.tar.gz"
},
Expand Down
1 change: 1 addition & 0 deletions tasks/packagetasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ gulp.task('package:offline', () => {
packages.push({rid: 'osx', runtime: 'OSX'});
packages.push({rid: 'linux-x64', runtime: 'Linux'});
packages.push({rid: 'ubuntu22-x64', runtime: "Ubuntu_22"})
packages.push({rid: 'osx-arm64', runtime: "OSX_ARM64"})

var promise = Promise.resolve();
cleanServiceInstallFolder().then(() => {
Expand Down

0 comments on commit 8821dbb

Please sign in to comment.