Skip to content

Commit c9cbaf6

Browse files
committed
chore: update version, changelog
1 parent 4c95b57 commit c9cbaf6

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.4.1] - 2021-12-17
9+
10+
### Added
11+
12+
- feat: accomidate for legacy `processing.path` conig option
13+
14+
### Fixed
15+
16+
- fix: escape spaces in executable path
17+
818
## [2.4.0] - 2021-07-10
919

1020
### Added

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "processing-vscode",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"private": true,
55
"description": "Processing Language Support for VSCode",
66
"license": "MIT",
@@ -15,11 +15,11 @@
1515
"vscode": "^1.48.0"
1616
},
1717
"scripts": {
18-
"test": "node --experimental-vm-modules --experimental-specifier-resolution=node node_modules/.bin/jest",
1918
"build": "rollup -c rollup.config.js",
2019
"deploy": "vsce publish",
2120
"format": "prettier . --write && eslint --ext ts --fix --cache",
2221
"lint": "eslint --ext ts src --max-warnings 0 --cache",
22+
"test": "node --experimental-vm-modules --experimental-specifier-resolution=node node_modules/.bin/jest",
2323
"vscode:prepublish": "rollup -c rollup.config.js"
2424
},
2525
"keywords": [

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const banner = `/**
99
* https://github.com/Luke-zhang-04/processing-vscode
1010
*
1111
* @license MIT
12-
* @version 2.5.0
12+
* @version 2.5.1
1313
* @preserve
1414
* @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang
1515
*

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Processing-vscode - Processing Language Support for VSCode
33
*
4-
* @version 2.5.0
4+
* @version 2.5.1
55
* @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang
66
*/
77

0 commit comments

Comments
 (0)