Skip to content

Commit 07b4d26

Browse files
committed
bumping version to 1.1.0
1 parent aab4db7 commit 07b4d26

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## [Unreleased]
4+
5+
## [1.1.0] - 2024-01-29
46
### Changed
57
- **Breaking:** Java 17 is now the minimum required version for using gml-objects.
68

@@ -26,7 +28,8 @@
2628
## [1.0.0] - 2022-08-20
2729
This is the initial release of gml-objects.
2830

29-
[Unreleased]: https://github.com/xmlobjects/gml-objects/compare/v1.0.4...HEAD
31+
[Unreleased]: https://github.com/xmlobjects/gml-objects/compare/v1.1.0...HEAD
32+
[1.1.0]: https://github.com/xmlobjects/gml-objects/releases/tag/v1.1.0
3033
[1.0.4]: https://github.com/xmlobjects/gml-objects/releases/tag/v1.0.4
3134
[1.0.3]: https://github.com/xmlobjects/gml-objects/releases/tag/v1.0.3
3235
[1.0.2]: https://github.com/xmlobjects/gml-objects/releases/tag/v1.0.2

README.md

Lines changed: 4 additions & 4 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.0.4.
14+
The latest stable release of gml-objects is 1.1.0.
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).
@@ -22,7 +22,7 @@ Previous releases are available from the [releases section](https://github.com/x
2222
* To propose a new feature create a GitHub issue and open a discussion.
2323

2424
## Building
25-
gml-objects requires Java 11 or higher. The project uses [Gradle](https://gradle.org/) as build system. To build the
25+
gml-objects requires Java 17 or higher. The project uses [Gradle](https://gradle.org/) as build system. To build the
2626
library from source, clone the repository to your local machine and run the following command from the root of the
2727
repository.
2828

@@ -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.0.4</version>
47+
<version>1.1.0</version>
4848
</dependency>
4949
```
5050

@@ -56,6 +56,6 @@ repositories {
5656
}
5757
5858
dependencies {
59-
compile 'org.xmlobjects.gml:gml-objects:1.0.4'
59+
compile 'org.xmlobjects.gml:gml-objects:1.1.0'
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.0-SNAPSHOT'
12+
version '1.1.0'
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.0-SNAPSHOT'
37-
annotationProcessor 'org.xmlobjects:xml-objects:1.1.0-SNAPSHOT'
36+
api 'org.xmlobjects:xml-objects:1.1.0'
37+
annotationProcessor 'org.xmlobjects:xml-objects:1.1.0'
3838
}
3939

4040
javadoc {

0 commit comments

Comments
 (0)