Skip to content

Commit

Permalink
Bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joneug committed Aug 31, 2020
1 parent 3b42d21 commit a52dd51
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 22 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [0.3.0] - 2020-08-31

### Changed

* Update to `mdAL` release [0.3.0](https://github.com/mdal-lang/mdal/releases/tag/v0.3.0)

## [0.2.1] - 2020-07-23

### Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# `mdAL` VS Code Extension

![GitHub Workflow Status](https://img.shields.io/github/workflow/status/mdal-lang/mdal-extension/Build)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/mdal-lang/mdal-extension)
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/mdal-lang/mdal-vscode/Build)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/mdal-lang/mdal-vscode)

This repository contains the VS Code language extension adding support for [`mdAL`](https://github.com/mdal-lang/mdal). `mdAL` is a Domain Specific Language that enables a Model-Driven approach to extension module development for the ERP System Microsoft Dynamics 365 Business Central. `mdAL` stands for **m**odel-**d**riven **AL**.

Expand Down Expand Up @@ -35,7 +35,7 @@ To start using `mdAL` [create a new AL project](https://docs.microsoft.com/en-us
* Documentation hovers
* Snippets

If you encounter errors or have suggestions for future releases, please open an [issue](https://github.com/mdal-lang/mdal-extension/issues).
If you encounter errors or have suggestions for future releases, please open an [issue](https://github.com/mdal-lang/mdal-vscode/issues).

## Development

Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ node {
}

project.ext {
mdalReleasesUrl = 'https://api.github.com/repos/mdal-lang/mdal/releases/tags/v0.2.1'
mdalReleasesUrl = 'https://api.github.com/repos/mdal-lang/mdal/releases/tags/v0.3.0'
}

import groovy.json.JsonSlurper
Expand All @@ -35,7 +35,7 @@ task copyApplication(dependsOn: downloadMdalRelease, type: Sync) {
}

task copyApplicationLocal(type: Sync) {
from zipTree(new File('../mdal/de.joneug.mdal.ide/build/distributions', 'de.joneug.mdal.ide-0.2.1.zip'))
from zipTree(new File('../mdal/de.joneug.mdal.ide/build/distributions', 'de.joneug.mdal.ide-0.3.0.zip'))
into 'mdal'
}

Expand Down Expand Up @@ -124,12 +124,12 @@ build.dependsOn vscodeExtension

task publishVSM(dependsOn: vscodeExtension, type: NodeTask) {
script = file("$rootProject.projectDir/node_modules/vsce/out/vsce")
args = [ 'publish', '-p', System.getenv('VSCE_TOKEN'), "--packagePath", "${project.buildDir}/vscode/mdal-extension-${project.version}.vsix"]
args = [ 'publish', '-p', System.getenv('VSCE_TOKEN'), "--packagePath", "${project.buildDir}/vscode/mdal-vscode-${project.version}.vsix"]
execOverrides {
workingDir = projectDir
}
}

task publishOVSX(dependsOn: vscodeExtension, type: Exec) {
commandLine 'npx', 'ovsx', 'publish', "${project.buildDir}/vscode/mdal-extension-${project.version}.vsix", '-p', System.getenv('OVSX_TOKEN')
commandLine 'npx', 'ovsx', 'publish', "${project.buildDir}/vscode/mdal-vscode-${project.version}.vsix", '-p', System.getenv('OVSX_TOKEN')
}
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
],
"icon": "images/icon.png",
"preview": true,
"version": "0.2.1",
"version": "0.3.0",
"publisher": "joneug",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/mdal-lang/mdal-extension"
"url": "https://github.com/mdal-lang/mdal-vscode"
},
"bugs": {
"url": "https://github.com/mdal-lang/mdal-extension/issues"
"url": "https://github.com/mdal-lang/mdal-vscode/issues"
},
"engines": {
"vscode": "^1.45.0"
Expand Down Expand Up @@ -122,7 +122,7 @@
},
"dependencies": {
"@types/vscode": "^1.45.0",
"vsce": "^1.75.0",
"vsce": "^1.79.5",
"vscode-languageclient": "^6.1.3"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = 'mdal-extension'
rootProject.name = 'mdal-vscode'

0 comments on commit a52dd51

Please sign in to comment.