Skip to content

Commit 9d337de

Browse files
github-actions[bot]tortmayreclipse-glsp-bot
authored
Switch to nightly 2.6.0-next versions (#1574)
* Fix changelog * Switch to nightly 2.6.0-next versions --------- Co-authored-by: Tobias Ortmayr <tortmayr@eclipsesource.com> Co-authored-by: eclipse-glsp-bot <57175764+eclipse-glsp-bot@users.noreply.github.com>
1 parent 88834be commit 9d337de

File tree

12 files changed

+31
-25
lines changed

12 files changed

+31
-25
lines changed

CHANGELOG.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,27 @@
11
# Eclipse GLSP Dev Packages Changelog
22

3-
## [2.5.0 - 07/09/2024](https://github.com/eclipse-glsp/glsp/releases/tag/v2.5.0)
3+
## v2.6.0 - active
4+
5+
### Changes
6+
7+
### Potentially Breaking Changes
8+
9+
## [v2.5.0 - 07/09/2024](https://github.com/eclipse-glsp/glsp/releases/tag/v2.5.0)
410

511
### Changes
612

713
- [node] Dropped support for node 18 & update minimum requirements for Node to >=20.x [#1564](https://github.com/eclipse-glsp/glsp/pull/1564)
814
- Minimum required TS version is now 5.x
915

10-
## [2.4.0 - 04/04/2024](https://github.com/eclipse-glsp/glsp/releases/tag/v2.4.0)
16+
## [v2.4.0 - 04/04/2024](https://github.com/eclipse-glsp/glsp/releases/tag/v2.4.0)
1117

12-
## [2.3.0 - 23/12/2024](https://github.com/eclipse-glsp/glsp/releases/tag/v2.3.0)
18+
## [v2.3.0 - 23/12/2024](https://github.com/eclipse-glsp/glsp/releases/tag/v2.3.0)
1319

1420
### Changes
1521

1622
- [node] Dropped support for node 16 & update minimum requirements for Node to >=18.x [#1457](https://github.com/eclipse-glsp/glsp/pull/1457)
1723

18-
## [2.2.1 - 22/07/2024](https://github.com/eclipse-glsp/glsp/releases/tag/v2.2.1)
24+
## [v2.2.1 - 22/07/2024](https://github.com/eclipse-glsp/glsp/releases/tag/v2.2.1)
1925

2026
### Changes
2127

@@ -25,7 +31,7 @@
2531
- [cli] Contribute the `updateNext` command to the GLSP CLI tool. Allows updating of all dependencies in GLSP projects that are tagged with `next´. [1229](https://github.com/eclipse-glsp/glsp/pull/1299)
2632
- [ts-config] Update ts target to `ES2019` [#1372](https://github.com/eclipse-glsp/glsp/pull/1372)
2733

28-
## [2.0.0 - 13/10/2023](https://github.com/eclipse-glsp/glsp/releases/tag/v2.0.0)
34+
## [v2.0.0 - 13/10/2023](https://github.com/eclipse-glsp/glsp/releases/tag/v2.0.0)
2935

3036
### Changes
3137

dev-packages/cli/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/cli",
3-
"version": "2.5.0",
3+
"version": "2.6.0-next",
44
"description": "CLI Tooling & scripts for GLSP components",
55
"keywords": [
66
"eclipse",
@@ -50,7 +50,7 @@
5050
"shelljs": "^0.8.5"
5151
},
5252
"devDependencies": {
53-
"@eclipse-glsp/config": "2.5.0",
53+
"@eclipse-glsp/config": "2.6.0-next",
5454
"@types/glob": "^8.1.0",
5555
"@types/node-fetch": "^2.6.6",
5656
"@types/readline-sync": "^1.4.5",

dev-packages/config-test/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/config-test",
3-
"version": "2.5.0",
3+
"version": "2.6.0-next",
44
"description": "Meta package that provides Mocha and nyc configurations for GLSP projects",
55
"keywords": [
66
"eclipse",
@@ -25,8 +25,8 @@
2525
}
2626
],
2727
"dependencies": {
28-
"@eclipse-glsp/mocha-config": "2.5.0",
29-
"@eclipse-glsp/nyc-config": "2.5.0",
28+
"@eclipse-glsp/mocha-config": "2.6.0-next",
29+
"@eclipse-glsp/nyc-config": "2.6.0-next",
3030
"@istanbuljs/nyc-config-typescript": "^1.0.2",
3131
"@types/chai": "^4.3.7",
3232
"@types/mocha": "^10.0.2",

dev-packages/config/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/config",
3-
"version": "2.5.0",
3+
"version": "2.6.0-next",
44
"description": "Meta package that provides Typescript, eslint and prettier configurations and common dev dependencies for GLSP projects",
55
"keywords": [
66
"eclipse",
@@ -24,9 +24,9 @@
2424
}
2525
],
2626
"dependencies": {
27-
"@eclipse-glsp/eslint-config": "2.5.0",
28-
"@eclipse-glsp/prettier-config": "2.5.0",
29-
"@eclipse-glsp/ts-config": "2.5.0",
27+
"@eclipse-glsp/eslint-config": "2.6.0-next",
28+
"@eclipse-glsp/prettier-config": "2.6.0-next",
29+
"@eclipse-glsp/ts-config": "2.6.0-next",
3030
"@typescript-eslint/eslint-plugin": "^6.7.5",
3131
"@typescript-eslint/parser": "^6.7.5",
3232
"eslint": "^8.51.0",

dev-packages/dev/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/dev",
3-
"version": "2.5.0",
3+
"version": "2.6.0-next",
44
"description": "All-in-one meta package that provides the GLSP development and test configuration packages, as well as the GLSP CLI package",
55
"keywords": [
66
"eclipse",
@@ -24,9 +24,9 @@
2424
}
2525
],
2626
"dependencies": {
27-
"@eclipse-glsp/cli": "2.5.0",
28-
"@eclipse-glsp/config": "2.5.0",
29-
"@eclipse-glsp/config-test": "2.5.0"
27+
"@eclipse-glsp/cli": "2.6.0-next",
28+
"@eclipse-glsp/config": "2.6.0-next",
29+
"@eclipse-glsp/config-test": "2.6.0-next"
3030
},
3131
"publishConfig": {
3232
"access": "public"

dev-packages/eslint-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/eslint-config",
3-
"version": "2.5.0",
3+
"version": "2.6.0-next",
44
"description": "Shared ESLint configuration for GLSP projects",
55
"keywords": [
66
"eclipse",

dev-packages/mocha-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/mocha-config",
3-
"version": "2.5.0",
3+
"version": "2.6.0-next",
44
"description": "Shared Mocha test configuration for GLSP projects",
55
"keywords": [
66
"eclipse",

dev-packages/nyc-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/nyc-config",
3-
"version": "2.5.0",
3+
"version": "2.6.0-next",
44
"description": "Shared nyc configuration for GLSP projects",
55
"keywords": [
66
"eclipse",

dev-packages/prettier-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/prettier-config",
3-
"version": "2.5.0",
3+
"version": "2.6.0-next",
44
"description": "Shared Prettier configuration for GLSP projects",
55
"keywords": [
66
"eclipse",

dev-packages/ts-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eclipse-glsp/ts-config",
3-
"version": "2.5.0",
3+
"version": "2.6.0-next",
44
"description": "Shared Typescript configuration for GLSP projects",
55
"keywords": [
66
"eclipse",

0 commit comments

Comments
 (0)