Skip to content

Commit 2923b45

Browse files
committed
Prepare next development iteration 1.9.0
Signed-off-by: Aurélien Pupier <[email protected]>
1 parent b66ae7c commit 2923b45

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
All notable changes to the "vscode-debug-adapter-apache-camel" extension will be documented in this file.
44

5+
# 1.9.0
6+
57
## 1.8.0
68

79
- Potential breakage: when using a Camel Jbang version strictly prior to 4.11, the parameter `--disable-auto` must be removed from the setting `Kubernetes Run Parameters`

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"displayName": "Debug Adapter for Apache Camel by Red Hat",
44
"description": "Client for the Debug Adapter implementation for Apache Camel",
55
"license": "Apache-2.0",
6-
"version": "1.8.0",
6+
"version": "1.9.0",
77
"preview": false,
88
"publisher": "redhat",
99
"icon": "icons/icon128.png",

scripts/postinstall.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
'use strict';
22

3-
const dapServerVersion = '1.8.0';
3+
const dapServerVersion = '1.9.0-SNAPSHOT';
44

55
const download = require('mvn-artifact-download').default;
66
const fs = require('fs');
77
const path = require('path');
88

99
// Released versions: https://repo1.maven.org/maven2/
1010
// Snapshot versions: https://central.sonatype.com/repository/maven-snapshots/
11-
const MAVEN_REPO_URL = 'https://repo1.maven.org/maven2/';
11+
const MAVEN_REPO_URL = 'https://central.sonatype.com/repository/maven-snapshots/';
1212

1313
download('com.github.camel-tooling:camel-dap-server:' + dapServerVersion, './jars/', MAVEN_REPO_URL).then((filename)=>{
1414
fs.renameSync(filename, path.join('.', 'jars', 'camel-dap-server.jar'));

0 commit comments

Comments
 (0)