Skip to content

Commit d41b594

Browse files
committed
Finish v0.16.0
2 parents a11df6f + 9309dd1 commit d41b594

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

.github/workflows/gradle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Set up JDK ${{ matrix.java_version }}
16-
uses: actions/setup-java@v4.6.0
16+
uses: actions/setup-java@v4.7.0
1717
with:
1818
java-version: ${{ matrix.java_version }}
1919
distribution: 'adopt'

.github/workflows/night_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
ref: nigth_build
1919
- name: Set up JDK
20-
uses: actions/setup-java@v4.6.0
20+
uses: actions/setup-java@v4.7.0
2121
with:
2222
java-version: 17
2323
distribution: 'adopt'

.github/workflows/qa.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- run: |
1818
git fetch --prune --unshallow
1919
- name: Set up JDK 17
20-
uses: actions/setup-java@v4.6.0
20+
uses: actions/setup-java@v4.7.0
2121
with:
2222
java-version: 17
2323
distribution: 'adopt'

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout source
1515
uses: actions/checkout@v4
1616
- name: Set up JDK
17-
uses: actions/setup-java@v4.6.0
17+
uses: actions/setup-java@v4.7.0
1818
with:
1919
java-version: 17
2020
distribution: 'adopt'

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ plugins {
1010
id("com.github.johnrengelman.shadow") version ("7.0.0")
1111
id("com.github.ben-manes.versions") version "0.52.0"
1212
id("com.github.gradle-git-version-calculator") version "1.1.0"
13-
id("io.freefair.lombok") version "8.12"
13+
id("io.freefair.lombok") version "8.12.1"
1414
}
1515

1616
group = "io.github.1c-syntax"
@@ -32,7 +32,7 @@ val sonarQubeVersion = "9.9.0.65466"
3232
dependencies {
3333
implementation("org.sonarsource.api.plugin", "sonar-plugin-api", "9.14.0.375")
3434

35-
implementation("io.github.1c-syntax", "bsl-language-server", "0.23.1") {
35+
implementation("io.github.1c-syntax", "bsl-language-server", "0.24.0") {
3636
exclude("com.contrastsecurity", "java-sarif")
3737
exclude("io.sentry", "sentry-logback")
3838
exclude("org.springframework.boot", "spring-boot-starter-websocket")

src/main/java/com/github/_1c_syntax/bsl/sonar/BSLHighlighter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,8 @@ private static Set<Integer> createSdblSeparators() {
419419
SDBLLexer.GREATER,
420420
SDBLLexer.COMMA,
421421
SDBLLexer.BRACE,
422-
SDBLLexer.BRACE_START
422+
SDBLLexer.BRACE_START,
423+
SDBLLexer.NUMBER_SIGH
423424
);
424425
}
425426

src/test/java/com/github/_1c_syntax/bsl/sonar/BSLHighlighterTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,8 @@ private Map<String, TypeOfText> getHighlightingMapSDBL(Vocabulary vocabulary) {
467467
"GREATER",
468468
"COMMA",
469469
"BRACE",
470-
"BRACE_START"
470+
"BRACE_START",
471+
"NUMBER_SIGH"
471472
);
472473

473474
Set<String> noOpTypes = Set.of(

0 commit comments

Comments
 (0)