Skip to content

Commit c7ad360

Browse files
authored
Release 6.3.0 (#85)
* Update CHANGELOG.md for release 6.3.0 * [maven-release-plugin] prepare release v6.3.0 * [maven-release-plugin] prepare for next development iteration --------- Co-authored-by: fkleedorfer <>
1 parent d7ac056 commit c7ad360

File tree

20 files changed

+28
-25
lines changed

20 files changed

+28
-25
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [6.3.0] - 2024-02-03
11+
12+
### Added
13+
14+
- `Qudt.unitsFrom*` methods for obtaining units that match a given specification expressed via factor units.
15+
- `FactorUnits FactorUnits.withoutScaleFactor()` to get the FactorUnits object with scaleFactor 1.
16+
1017
### Changed
1118

1219
- `Qudt.unitsFromFactorUnits` has been changed to give highest priority to units with factorUnits equal to the requested ones.
@@ -15,11 +22,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1522

1623
- `Qudt.derivedUnitsFrom*` have been deprecated. The implementations have become slower. The alternatives are listed in the code comments. The replacing methods have been renamed to fit better with the other unit-related methods and return `List<Unit>` instead of `Set<Unit>`. The reason is that the list is sorted according to match quality, which helps clients to choose the best after filtering.
1724

18-
### Added
19-
20-
- `Qudt.unitsFrom*` methods for obtaining units that match a given specification expressed via factor units.
21-
- `FactorUnits FactorUnits.withoutScaleFactor()` to get the FactorUnits object with scaleFactor 1.
22-
2325
## [6.2.0] - 2024-01-11
2426

2527
### Changed
@@ -228,7 +230,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
228230

229231
- Initial release.
230232

231-
[Unreleased]: https://github.com/qudtlib/qudtlib-java/compare/v6.2.0...HEAD
233+
[Unreleased]: https://github.com/qudtlib/qudtlib-java/compare/v6.3.0...HEAD
234+
[6.3.0]: https://github.com/qudtlib/qudtlib-java/compare/v6.2.0...v6.3.0
232235
[6.2.0]: https://github.com/qudtlib/qudtlib-java/compare/v6.1.0...v6.2.0
233236
[6.1.0]: https://github.com/qudtlib/qudtlib-java/compare/v6.0.3...v6.1.0
234237
[6.0.3]: https://github.com/qudtlib/qudtlib-java/compare/v6.0.2...v6.0.3

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>qudtlib-java</artifactId>
66
<packaging>pom</packaging>
77
<name>qudtlib-java</name>
8-
<version>6.3.0-SNAPSHOT</version>
8+
<version>6.4-SNAPSHOT</version>
99
<url>https://github.com/qudtlib/qudtlib-java</url>
1010
<description>Unit conversion and related functionality for Java based on the QUDT ontology.</description>
1111
<developers>

qudtlib-common-codegen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>qudtlib-java</artifactId>
55
<groupId>io.github.qudtlib</groupId>
6-
<version>6.3.0-SNAPSHOT</version>
6+
<version>6.4-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

qudtlib-common-rdf/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>qudtlib-java</artifactId>
55
<groupId>io.github.qudtlib</groupId>
6-
<version>6.3.0-SNAPSHOT</version>
6+
<version>6.4-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

qudtlib-constants-gen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>qudtlib-java</artifactId>
55
<groupId>io.github.qudtlib</groupId>
6-
<version>6.3.0-SNAPSHOT</version>
6+
<version>6.4-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>qudtlib-constants-gen</artifactId>

qudtlib-data-gen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>qudtlib-java</artifactId>
55
<groupId>io.github.qudtlib</groupId>
6-
<version>6.3.0-SNAPSHOT</version>
6+
<version>6.4-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>qudtlib-data-gen</artifactId>

qudtlib-data/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>qudtlib-java</artifactId>
55
<groupId>io.github.qudtlib</groupId>
6-
<version>6.3.0-SNAPSHOT</version>
6+
<version>6.4-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>qudtlib-data</artifactId>

qudtlib-example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>qudtlib-java</artifactId>
55
<groupId>io.github.qudtlib</groupId>
6-
<version>6.3.0-SNAPSHOT</version>
6+
<version>6.4-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99

qudtlib-hardcoded-model-gen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>qudtlib-java</artifactId>
55
<groupId>io.github.qudtlib</groupId>
6-
<version>6.3.0-SNAPSHOT</version>
6+
<version>6.4-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>qudtlib-hardcoded-model-gen</artifactId>

qudtlib-ingest-qudt/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<artifactId>qudtlib-java</artifactId>
55
<groupId>io.github.qudtlib</groupId>
6-
<version>6.3.0-SNAPSHOT</version>
6+
<version>6.4-SNAPSHOT</version>
77
</parent>
88
<modelVersion>4.0.0</modelVersion>
99
<artifactId>qudtlib-ingest-qudt</artifactId>

0 commit comments

Comments
 (0)