Skip to content

Commit f198805

Browse files
authored
Merge pull request #8192 from vieiro/hotfix/8174
#8174: Bump ide/libs.tomljava
2 parents e031a38 + 652a76d commit f198805

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

ide/languages.toml/test/unit/src/org/netbeans/modules/languages/toml/TomlKeystrokeTest.java

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,20 @@ public void testInsertSingleQuote4() throws Exception {
8282
insertChar("foo= ^bar", '\'', "foo= 'bar'^", "bar");
8383
}
8484

85-
public void testStepSingleQuote() throws Exception {
85+
public void testStepSingleQuote() throws Exception {
8686
insertChar("foo= '^'", '\'', "foo= ''^");
8787
}
8888

8989
public void testDeleteSingle2() throws Exception {
9090
deleteChar("foo= ''^", "foo= '^");
9191
}
9292

93+
public void testDeleteLastBrace() throws Exception {
94+
deleteChar("[plugins]\n"
95+
+ "jooq-codegen = { id = \"org.jooq.jooq-codegen-gradle\", version.ref=\"jooq\" }^",
96+
"[plugins]\n"
97+
+ "jooq-codegen = { id = \"org.jooq.jooq-codegen-gradle\", version.ref=\"jooq\" ^"
98+
);
99+
}
100+
93101
}

ide/libs.tomljava/external/binaries-list

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17-
FC26667B60FE746EEA788957157FA280D8F456DF net.vieiro:toml-java:13.4.1
17+
47006953C4961EDC2B14E55D01801FF95CF321DF net.vieiro:toml-java:13.4.2

ide/libs.tomljava/external/toml-java-13.4.1-license.txt renamed to ide/libs.tomljava/external/toml-java-13.4.2-license.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: TOML parser in Java
2-
Version: 13.4.1
2+
Version: 13.4.2
33
Description: A parser for Tom's Obvious, Minimal Language (TOML).
44
License: Apache-2.0
55
Origin: https://github.com/vieiro/toml-java

ide/libs.tomljava/nbproject/project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
is.autoload=true
1919
javac.source=1.8
2020
javac.compilerargs=-Xlint -Xlint:-serial
21-
release.external/toml-java-13.4.1.jar=modules/ext/toml-java-13.4.1.jar
21+
release.external/toml-java-13.4.2.jar=modules/ext/toml-java-13.4.2.jar

ide/libs.tomljava/nbproject/project.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040
<package>net.vieiro.toml.antlr4</package>
4141
</public-packages>
4242
<class-path-extension>
43-
<runtime-relative-path>ext/toml-java-13.4.1.jar</runtime-relative-path>
44-
<binary-origin>external/toml-java-13.4.1.jar</binary-origin>
43+
<runtime-relative-path>ext/toml-java-13.4.2.jar</runtime-relative-path>
44+
<binary-origin>external/toml-java-13.4.2.jar</binary-origin>
4545
</class-path-extension>
4646
</data>
4747
</configuration>

0 commit comments

Comments
 (0)