Skip to content

Commit

Permalink
prepare next development iteration 1.4.0
Browse files Browse the repository at this point in the history
Signed-off-by: Aurélien Pupier <[email protected]>
  • Loading branch information
apupier committed Sep 4, 2024
1 parent 5ad4afc commit dffba7f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions scripts/postinstall.js
Original file line number Diff line number Diff line change
@@ -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'));
Expand Down

0 comments on commit dffba7f

Please sign in to comment.