Skip to content

Commit ad30a3c

Browse files
chore(release): 0.12.0-alpha.1
# [0.12.0-alpha.1](0.11.1...0.12.0-alpha.1) (2020-07-07) ### Bug Fixes * Avoid many error messages for copybook downloading [eclipse-che4z#384](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/384) ([8f3ab6f](8f3ab6f)) * Avoid many error messages for copybook downloading [eclipse-che4z#384](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/384) ([2e7e394](2e7e394)) * Change log archive path pattern to relate on the user directory [eclipse-che4z#307](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/307) ([9c6c882](9c6c882)) * Create a .gitignore file if it doesn't exist [eclipse-che4z#329](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/329) ([40ca9f7](40ca9f7)) * err-log [eclipse-che4z#331](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/331) ([d830593](d830593)) * Fix glob pattern for dynamic registration [eclipse-che4z#355](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/355) ([7117683](7117683)) * Fix issue related to copybook with extension that were not recognized as valid URI eclipse-che4zGH-355 ([39169e2](39169e2)), closes [eclipse-che4z#355](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/355) * Fix issue with indirect overwrite settings conf for dsn paths ([1afe039](1afe039)) * Fix representation of settings.json in Theia [eclipse-che4z#393](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/393) ([b4cd52b](b4cd52b)) * Hide 'no errors found' message eclipse-che4zGH-312 ([6f19c9b](6f19c9b)), closes [eclipse-che4z#312](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/312) * refactor on review [eclipse-che4z#331](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/331) ([4e8e8af](4e8e8af)) * Remove popup message, track event in log file [eclipse-che4z#318](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/318) ([ba33f88](ba33f88)) * unexpected Java 8 expected error message [eclipse-che4z#333](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/333) ([eclipse-che4z#396](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/396)) ([9c224a6](9c224a6)) * update activation event [eclipse-che4z#331](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/331) ([ac65f46](ac65f46)) * Use sync APIs to create folder and write on file to avoid unexpected behavior ([17b8908](17b8908)) ### Features * Adjust the info message about missing copybooks [eclipse-che4z#391](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/391) ([54a3386](54a3386)) * Fetch copybooks without .dep files eclipse-che4zGH-327 ([098f4bc](098f4bc)), closes [eclipse-che4z#327](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/327) * Inform user about wrong credentials and stop sending other MF requests ([0dc0548](0dc0548)), closes [eclipse-che4z#237](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/237) * Introduce dynamic registration for watchers eclipse-che4zGH-355 ([0358b95](0358b95)), closes [eclipse-che4z#355](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/355) * Retrieve local copybooks if exists eclipse-che4zGH-327 ([7d3a068](7d3a068)), closes [eclipse-che4z#327](https://github.com/grianbrcom/che-che4z-lsp-for-cobol/issues/327) Signed-off-by: semantic-release-bot <[email protected]>
1 parent 01c953b commit ad30a3c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Jenkinsfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ pipeline {
164164
dir('clients/cobol-lsp-vscode-extension') {
165165
sh 'npx vsce package'
166166
archiveArtifacts "*.vsix"
167-
sh 'mv cobol-language-support*.vsix cobol-language-support_0.12.0+NEXT.vsix'
167+
sh 'mv cobol-language-support*.vsix cobol-language-support_0.12.0-alpha.1.vsix'
168168
}
169169
}
170170
}

clients/cobol-lsp-vscode-extension/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Autocomplete, highlighting and diagnostics for COBOL code and copybooks.",
55
"author": "Broadcom",
66
"license": "EPL-2.0",
7-
"version": "0.12.0+NEXT",
7+
"version": "0.12.0-alpha.1",
88
"preview": false,
99
"publisher": "BroadcomMFD",
1010
"engines": {

clients/cobol-lsp-vscode-extension/server/note.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
Put in this folder the COBOL LSP server jar with this name
1818

1919
```
20-
lsp-service-cobol-0.12.0+NEXT.jar
20+
lsp-service-cobol-0.12.0-alpha.1.jar
2121
```
2222
In Linux environment be sure that the server folder have read/write permission, in case simply run the command
2323

com.ca.lsp.cobol/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<name>COBOL LSP :: Parent pom</name>
2626

2727
<properties>
28-
<revision>0.12.0+NEXT</revision>
28+
<revision>0.12.0-alpha.1</revision>
2929
<lsp4j.version>0.5.0</lsp4j.version>
3030
<antlr.version>4.7.1</antlr.version>
3131
<guice.version>4.2.2</guice.version>

0 commit comments

Comments
 (0)