Skip to content

Commit a8e75fb

Browse files
committed
[1.0.0] - 2024-02-19
1 parent 8ee361a commit a8e75fb

File tree

7 files changed

+41
-34
lines changed

7 files changed

+41
-34
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.0.0] - 2024-02-19
11+
1012
### Added
1113

14+
- github-issue-export-version 1.0.0
1215
- java 17 version page
1316
- [fugerit project structure](src/docs/conventions/fugerit-project-structure.md)
1417
- [fugerit github project conventions](src/docs/conventions/index.md)
1518

1619
### Changed
1720

21+
- fj-doc-mod-openpdf moved to deprecated section, substituted by [openpdf and openrtf modules in fj-doc](https://github.com/fugerit-org/fj-doc/issues/111)
22+
- fj-tool-util-version set to 1.0.0
23+
- fj-tool-helper-version set to 1.0.0
24+
- fj-xml-to-json-version set to 1.0.0
25+
- query-export-tool-version set to 1.0.0
1826
- fj-bom version set to 1.6.0
1927
- fj-version set to 8.4.8
2028
- fj-doc-version set to 3.4.1

README.md

Lines changed: 23 additions & 24 deletions
Large diffs are not rendered by default.

fj-universe-test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.fugerit.java.universe</groupId>
88
<artifactId>fj-universe</artifactId>
9-
<version>0.5.8</version>
9+
<version>1.0.0</version>
1010
</parent>
1111

1212
<artifactId>fj-universe-test</artifactId>

fj-universe-test/src/test/java/test/org/fugerit/java/universe/utils/SectionCatalog.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ private SectionCatalog() {}
88

99
private static final SectionModel[] SECTIONS_FUGERIT_ORG = {
1010
SectionModel.newInstance( "core" , "fj-bom", "fj-lib", "fj-doc", "fj-daogen" ),
11-
SectionModel.newInstance( "extra" , "fj-doc-mod-openpdf", "query-export-tool", "fj-tool-util", "fj-tool-helper", "fj-xml-to-json", "fj-i18n-xml-helper", "yaml-doc-tool" ),
12-
SectionModel.newInstance( "deprecated" , "fj-core-j2ee", "fj-doc-ent", "fj-doc-mod-jxl", "fj-doc-mod-itext" ),
11+
SectionModel.newInstance( "extra" , "query-export-tool", "fj-tool-util", "fj-tool-helper", "fj-xml-to-json", "fj-i18n-xml-helper", "yaml-doc-tool", "github-issue-export" ),
12+
SectionModel.newInstance( "deprecated" , "fj-doc-mod-openpdf", "fj-core-j2ee", "fj-doc-ent", "fj-doc-mod-jxl", "fj-doc-mod-itext" ),
1313
};
1414

1515
public static SectionModel[] getSectionsFugeritOrg() {

fj-universe-test/src/test/java/test/org/fugerit/java/universe/utils/TestGenerateReadme.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public void generate() throws IOException {
3131
}
3232
log.info( "current {} - {} - {}", name, module, propertyBase );
3333
writer.println( MessageFormat.format(
34-
"| [{1}-version](src/docs/versions-core.md#{1}-version) | [fugerit-org/{0}](https://github.com/fugerit-org/{0}) | "
34+
"| [{1}-version](src/docs/versions-"+name+".md#{1}-version) | [fugerit-org/{0}](https://github.com/fugerit-org/{0}) | "
3535
+ "[![Maven Central](https://img.shields.io/maven-central/v/org.fugerit.java/{0}.svg)](https://mvnrepository.com/artifact/org.fugerit.java/{0}) | "
3636
+ "[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=fugerit-org_{0}&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=fugerit-org_{0}) |"
3737
+ "[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=fugerit-org_{0}&metric=coverage)](https://sonarcloud.io/summary/new_code?id=fugerit-org_{0})",

fj-universe-tool/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.fugerit.java.universe</groupId>
88
<artifactId>fj-universe</artifactId>
9-
<version>0.5.8</version>
9+
<version>1.0.0</version>
1010
</parent>
1111

1212
<artifactId>fj-universe-tool</artifactId>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<groupId>org.fugerit.java.universe</groupId>
1313
<artifactId>fj-universe</artifactId>
1414

15-
<version>0.5.8</version>
15+
<version>1.0.0</version>
1616
<packaging>pom</packaging>
1717

1818
<properties>
@@ -24,10 +24,10 @@
2424
<fj-daogen-version>1.3.3</fj-daogen-version>
2525
<!-- extra modules -->
2626
<fj-doc-mod-openpdf-version>1.3.0</fj-doc-mod-openpdf-version>
27-
<query-export-tool-version>0.4.2</query-export-tool-version>
28-
<fj-tool-util-version>0.1.0</fj-tool-util-version>
29-
<fj-tool-helper-version>0.1.2</fj-tool-helper-version>
30-
<fj-xml-to-json-version>0.1.1</fj-xml-to-json-version>
27+
<query-export-tool-version>1.0.0</query-export-tool-version>
28+
<fj-tool-util-version>1.0.0</fj-tool-util-version>
29+
<fj-tool-helper-version>1.0.0</fj-tool-helper-version>
30+
<fj-xml-to-json-version>1.0.0</fj-xml-to-json-version>
3131
<fj-i18n-xml-helper-version>2.0.0</fj-i18n-xml-helper-version>
3232
<yaml-doc-tool-version>1.0.0</yaml-doc-tool-version>
3333
<github-issue-export-version>0.7.0</github-issue-export-version>

0 commit comments

Comments
 (0)