From 09909206b11213e3cdc85151e3a0a7e33465f609 Mon Sep 17 00:00:00 2001 From: Dominik Jelinek Date: Thu, 21 Nov 2024 13:06:28 +0100 Subject: [PATCH] Prepare next development iteration 1.8.0 --- 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 8df84de4..a4238804 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,7 @@ # Change Log +## 1.8.0 + ## 1.7.0 - Update Kamelet Catalog from 4.8.0 to 4.8.1 diff --git a/package-lock.json b/package-lock.json index 26b3c8a0..ebb74978 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "vscode-apache-camel", - "version": "1.7.0", + "version": "1.8.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "vscode-apache-camel", - "version": "1.7.0", + "version": "1.8.0", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index 601f110b..614a0622 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "Language Support for Apache Camel by Red Hat", "description": "Provides completion, validation and documentation features for Apache Camel URI elements.", "license": "Apache-2.0", - "version": "1.7.0", + "version": "1.8.0", "preview": false, "publisher": "redhat", "icon": "icons/icon128.png", diff --git a/scripts/postinstall.js b/scripts/postinstall.js index 55ec613f..e1e24874 100644 --- a/scripts/postinstall.js +++ b/scripts/postinstall.js @@ -1,12 +1,12 @@ 'use strict'; -const LSP_SERVER_VERSION = "1.27.0"; +const LSP_SERVER_VERSION = "1.28.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-lsp-server:' + LSP_SERVER_VERSION, './jars/', MAVEN_REPO_URL).then((filename)=>{