Skip to content

Commit

Permalink
Merge branch 'release_0.20'
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahgraham committed Feb 28, 2023
2 parents 044e46c + 03e8a25 commit 8b992b7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ Breaking API changes:

Nightly japicmp report: <https://download.eclipse.org/lsp4j/builds/main/japicmp-report/>

### [v0.20.1 (February 2023)](https://github.com/eclipse/lsp4j/releases/tag/v0.20.1)

Fixed issues: <https://github.com/eclipse/lsp4j/milestone/29?closed=1>

Breaking API changes:

japicmp report: <https://download.eclipse.org/lsp4j/updates/releases/0.20.1/japicmp-report/>

### [v0.20.0 (February 2023)](https://github.com/eclipse/lsp4j/releases/tag/v0.20.0)

Fixed issues: <https://github.com/eclipse/lsp4j/milestone/27?closed=1>
Expand Down
2 changes: 1 addition & 1 deletion documentation/releasing.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Items at the beginning of development
- [ ] Create a [New milestone](https://github.com/eclipse/lsp4j/milestones/new) for the release
- [ ] Check [CHANGELOG.md](https://github.com/eclipse/lsp4j/blob/main/CHANGELOG.md) is up to date. The changelog should have a version entry, release date, API Breakages and other information consistent with current entries in the changelog.
- [ ] Check [README.md](https://github.com/eclipse/lsp4j/blob/main/README.md) is up to date. In particular that the planned release and which versions of DAP and LSP are support is listed.
- [ ] Increment version of all feature.xml, pom.xml and any other place full version is used. (Easiest way is global find and replace, e.g. `s/0.19.0/0.21.0/g`, `s/0.18.0/0.19.0/g` and review changes.) Ensure that `-SNAPSHOT` is restored in the [gradle/versions.gradle](https://github.com/eclipse/lsp4j/blob/main/gradle/versions.gradle) and [releng/pom.xml](https://github.com/eclipse/lsp4j/blob/main/releng/pom.xml)
- [ ] Increment version of all feature.xml, pom.xml and any other place full version is used. (Easiest way is global find and replace, e.g. `s/0.20.0/0.21.0/g`, `s/0.19.0/0.20.0/g` and review changes.) Ensure that `-SNAPSHOT` is restored in the [gradle/versions.gradle](https://github.com/eclipse/lsp4j/blob/main/gradle/versions.gradle) and [releng/pom.xml](https://github.com/eclipse/lsp4j/blob/main/releng/pom.xml)
- [ ] Enable `sh './releng/deploy-build.sh'` in [releng/build.Jenkinsfile](https://github.com/eclipse/lsp4j/blob/main/releng/build.Jenkinsfile)
- [ ] Ensure [the CI build](https://ci.eclipse.org/lsp4j/job/lsp4j-multi-build/job/main/) is stable - it is always better to release a "Green Dot" build

Expand Down
4 changes: 1 addition & 3 deletions gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ version = '0.21.0-SNAPSHOT'
ext.versions = [
'xtend_lib': '2.28.0',
'guava': '[30.1,31)',
'guava_orbit': '30.1.0.v20221112-0806',
'gson': '[2.10.1,2.11)',
'gson_orbit': '2.10.1.v20230109-0753',
'gson': '[2.9.1,2.11)',
'websocket_jakarta': '2.0.0',
'websocket': '1.0',
'junit': '4.13.2'
Expand Down
2 changes: 1 addition & 1 deletion releng/lsp4j-feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</license>

<requires>
<import plugin="com.google.gson" version="2.10.1" match="equivalent"/>
<import plugin="com.google.gson" version="2.9.1" match="compatible"/>
<import plugin="org.eclipse.xtend.lib" version="2.10.0" match="compatible"/>
</requires>

Expand Down
2 changes: 1 addition & 1 deletion releng/runjapicmp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e # error out on any failed commands
#set -x # echo all commands used for debugging purposes


BASELINE=0.19.0
BASELINE=0.20.0

JAPICMP_VERSION=0.15.7
WD=$(mktemp -d)
Expand Down

0 comments on commit 8b992b7

Please sign in to comment.