Skip to content

Commit ef98498

Browse files
committed
bumping version to 1.1.4
1 parent cfedfce commit ef98498

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
## [Unreleased]
44

5-
## [1.1.3] - 2025-01-19
5+
## [1.1.4] - 2025-01-19
66
### Changed
77
- Simplified internal matrix API and moved it to the `org.xmlobjects.gml.util.matrix` package.
8+
- Updated xml-objects to 1.1.4.
9+
- Updated Gradle to 8.12.
810

911
### Fixed
1012
- The `include` method of `Envelope` is more robust against invalid input.
@@ -43,8 +45,8 @@
4345
## [1.0.0] - 2022-08-20
4446
This is the initial release of gml-objects.
4547

46-
[Unreleased]: https://github.com/xmlobjects/gml-objects/compare/v1.1.3...HEAD
47-
[1.1.3]: https://github.com/xmlobjects/gml-objects/releases/tag/v1.1.3
48+
[Unreleased]: https://github.com/xmlobjects/gml-objects/compare/v1.1.4...HEAD
49+
[1.1.4]: https://github.com/xmlobjects/gml-objects/releases/tag/v1.1.4
4850
[1.1.2]: https://github.com/xmlobjects/gml-objects/releases/tag/v1.1.2
4951
[1.1.1]: https://github.com/xmlobjects/gml-objects/releases/tag/v1.1.1
5052
[1.1.0]: https://github.com/xmlobjects/gml-objects/releases/tag/v1.1.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ gml-objects is licensed under the [Apache License, Version 2.0](http://www.apach
1111
See the `LICENSE` file for more details.
1212

1313
## Latest release
14-
The latest stable release of gml-objects is 1.1.3.
14+
The latest stable release of gml-objects is 1.1.4.
1515

1616
Download the latest gml-objects release binaries [here](https://github.com/xmlobjects/gml-objects/releases/latest).
1717
Previous releases are available from the [releases section](https://github.com/xmlobjects/gml-objects/releases).
@@ -44,7 +44,7 @@ project with Maven, add the following code to your `pom.xml`. You may need to ad
4444
<dependency>
4545
<groupId>org.xmlobjects.gml</groupId>
4646
<artifactId>gml-objects</artifactId>
47-
<version>1.1.3</version>
47+
<version>1.1.4</version>
4848
</dependency>
4949
```
5050

@@ -56,6 +56,6 @@ repositories {
5656
}
5757
5858
dependencies {
59-
compile 'org.xmlobjects.gml:gml-objects:1.1.3'
59+
compile 'org.xmlobjects.gml:gml-objects:1.1.4'
6060
}
6161
```

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = 'org.xmlobjects.gml'
12-
version = '1.1.3'
12+
version = '1.1.4'
1313
description = 'A Java mapping for the OGC Geography Markup Language (GML)'
1414
ext.date = new Date()
1515

@@ -33,8 +33,8 @@ repositories {
3333
}
3434

3535
dependencies {
36-
api 'org.xmlobjects:xml-objects:1.1.3'
37-
annotationProcessor 'org.xmlobjects:xml-objects:1.1.3'
36+
api 'org.xmlobjects:xml-objects:1.1.4'
37+
annotationProcessor 'org.xmlobjects:xml-objects:1.1.4'
3838
}
3939

4040
javadoc {

src/main/java/org/xmlobjects/gml/model/geometry/Envelope.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,8 @@ public Envelope include(List<Double> ordinates) {
266266
if (ordinates != null && !ordinates.isEmpty()) {
267267
int dimension = Math.min(lowerCorner.getValue().size(), upperCorner.getValue().size());
268268
if (dimension == 0) {
269-
lowerCorner.setValue(ordinates);
270-
upperCorner.setValue(ordinates);
269+
lowerCorner.setValue(new ArrayList<>(ordinates));
270+
upperCorner.setValue(new ArrayList<>(ordinates));
271271
} else {
272272
for (int i = 0; i < ordinates.size(); i++) {
273273
double ordinate = ordinates.get(i);

0 commit comments

Comments
 (0)