From dffba7f2735eca6fbcea66393a18999bff5decb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Tue, 3 Sep 2024 15:48:08 +0200 Subject: [PATCH] prepare next development iteration 1.4.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Pupier --- CHANGELOG.md | 2 ++ package-lock.json | 4 ++-- package.json | 2 +- scripts/postinstall.js | 4 ++-- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42b7e1ae..b7faddc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ All notable changes to the "vscode-debug-adapter-apache-camel" extension will be documented in this file. +## 1.4.0 + ## 1.3.0 - Provide command and quick action to run with JBang from paretn folder of current opened file diff --git a/package-lock.json b/package-lock.json index 2e5ee68f..572dd1ad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-debug-adapter-apache-camel", - "version": "1.3.0", + "version": "1.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-debug-adapter-apache-camel", - "version": "1.3.0", + "version": "1.4.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index fd2b7198..55292783 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Debug Adapter for Apache Camel by Red Hat", "description": "Client for the Debug Adapter implementation for Apache Camel", "license": "Apache-2.0", - "version": "1.3.0", + "version": "1.4.0", "preview": false, "publisher": "redhat", "icon": "icons/icon128.png", diff --git a/scripts/postinstall.js b/scripts/postinstall.js index 2ad6f93c..15e6d814 100644 --- a/scripts/postinstall.js +++ b/scripts/postinstall.js @@ -1,12 +1,12 @@ 'use strict'; -const dapServerVersion = '1.3.0'; +const dapServerVersion = '1.4.0-SNAPSHOT'; 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/releases/'; +const MAVEN_REPO_URL = 'https://oss.sonatype.org/content/repositories/snapshots/'; 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'));