diff --git a/CHANGELOG.md b/CHANGELOG.md index b7faddc6..95f00534 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,11 @@ All notable changes to the "vscode-debug-adapter-apache-camel" extension will be ## 1.4.0 +- Upgrade embedded Debug Adapter for Apache Camel to 1.3.0 + ## 1.3.0 -- Provide command and quick action to run with JBang from paretn folder of current opened file +- Provide command and quick action to run with JBang from parent folder of current opened file - Grouped run and debug quick editor action in the `Run or debug...` quick editor action - Upgrade embedded Debug Adapter for Apache Camel to 1.3.0 diff --git a/scripts/postinstall.js b/scripts/postinstall.js index 15e6d814..be8ad2fb 100644 --- a/scripts/postinstall.js +++ b/scripts/postinstall.js @@ -1,12 +1,12 @@ 'use strict'; -const dapServerVersion = '1.4.0-SNAPSHOT'; +const dapServerVersion = '1.4.0'; const download = require('mvn-artifact-download').default; const fs = require('fs'); const path = require('path'); -const MAVEN_REPO_URL = 'https://oss.sonatype.org/content/repositories/snapshots/'; +const MAVEN_REPO_URL = 'https://oss.sonatype.org/content/repositories/releases/'; download('com.github.camel-tooling:camel-dap-server:' + dapServerVersion, './jars/', MAVEN_REPO_URL).then((filename)=>{ fs.renameSync(filename, path.join('.', 'jars', 'camel-dap-server.jar'));