Release version 1.6.0

This commit is contained in:
Leonard Ehrenfried 2024-12-10 08:20:09 +01:00
parent 505052800e
commit c5044e0f0a
No known key found for this signature in database
GPG Key ID: 91B9733022C70C1C
2 changed files with 14 additions and 12 deletions

View File

@ -1,5 +1,9 @@
## Unreleased
## Release notes for 1.6.0 (2024-12-10)
- Java: Update to latest protoc and protobuf runtime versions [#84](https://github.com/openstreetmap/OSM-binary/pull/84)
## Release notes for 1.5.0 (2021-01-06)
- C: Support hardening buildflags set in the environment ([09845ca4](https://github.com/openstreetmap/OSM-binary/commit/09845ca4087c7404b1de33914233dbf53f9de4c3))

22
pom.xml
View File

@ -6,7 +6,7 @@
<groupId>org.openstreetmap.pbf</groupId>
<artifactId>osmpbf</artifactId>
<packaging>jar</packaging>
<version>1.5.0</version>
<version>1.6.0</version>
<name>OSM-Binary</name>
<description>Library for the OpenStreetMap PBF format</description>
<url>https://github.com/openstreetmap/OSM-binary</url>
@ -133,6 +133,15 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.6.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central-lenni</publishingServerId>
</configuration>
</plugin>
</plugins>
</build>
@ -158,15 +167,4 @@
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>ossrh</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<id>ossrh</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
</project>