Skip to content
This repository was archived by the owner on Jul 27, 2025. It is now read-only.

Commit a94fffb

Browse files
committed
[1.0.1] - 2024-06-02
1 parent a80ed42 commit a94fffb

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.0.1] - 2024-06-02
11+
1012
### Changed
1113

1214
- parent changed from fj-bom to fj-universe-tool 2.3.3

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<relativePath></relativePath>
1313
</parent>
1414

15-
<version>1.0.0</version>
15+
<version>1.0.1</version>
1616
<packaging>jar</packaging>
1717

1818
<name>yaml-doc-tool</name>

src/test/java/test/org/fugerit/java/yaml/doc/TestYamlDocCheckModel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public void testKo2() throws ConfigException {
5151
}
5252

5353
@Test
54-
public void testNoParam() throws ConfigException {
54+
public void testNoParam() {
5555
Properties params = new Properties();
5656
Assert.assertThrows( ConfigException.class , () -> YamlDocCheckModel.handleModelCheck(params) );
5757
params.setProperty( YamlDocMain.ARG_INPUT_YAML , "src/test/resources/sample/sample_check1.yaml" );

src/test/java/test/org/fugerit/java/yaml/doc/TestYamlDocFacade.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class TestYamlDocFacade {
3030
public boolean testWorkerSample( Locale locale, String encoding, String... outputFormats ) {
3131
return SafeFunction.get( () -> {
3232
boolean ok = false;
33-
System.setProperty( "file.encoding", FILE_ENCODING );
33+
System.setProperty( "file.encoding", encoding );
3434
for ( String outputFormat : outputFormats ) {
3535
try ( Reader reader = new FileReader( "src/test/resources/sample/sample.yaml" );
3636
OutputStream os = new FileOutputStream( new File( "target/sample_facade_"+locale+"."+outputFormat ) )) {

0 commit comments

Comments
 (0)