Merge pull request #87 from leonardehrenfried/master
Release version 1.6.0 of Java
This commit is contained in:
commit
a2e364e5e7
|
|
@ -1,5 +1,9 @@
|
||||||
## Unreleased
|
## 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)
|
## 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))
|
- C: Support hardening buildflags set in the environment ([09845ca4](https://github.com/openstreetmap/OSM-binary/commit/09845ca4087c7404b1de33914233dbf53f9de4c3))
|
||||||
|
|
|
||||||
23
pom.xml
23
pom.xml
|
|
@ -6,7 +6,7 @@
|
||||||
<groupId>org.openstreetmap.pbf</groupId>
|
<groupId>org.openstreetmap.pbf</groupId>
|
||||||
<artifactId>osmpbf</artifactId>
|
<artifactId>osmpbf</artifactId>
|
||||||
<packaging>jar</packaging>
|
<packaging>jar</packaging>
|
||||||
<version>1.5.0</version>
|
<version>1.6.0</version>
|
||||||
<name>OSM-Binary</name>
|
<name>OSM-Binary</name>
|
||||||
<description>Library for the OpenStreetMap PBF format</description>
|
<description>Library for the OpenStreetMap PBF format</description>
|
||||||
<url>https://github.com/openstreetmap/OSM-binary</url>
|
<url>https://github.com/openstreetmap/OSM-binary</url>
|
||||||
|
|
@ -133,6 +133,16 @@
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</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>
|
||||||
|
<autoPublish>true</autoPublish>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
|
|
@ -158,15 +168,4 @@
|
||||||
</dependency>
|
</dependency>
|
||||||
</dependencies>
|
</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>
|
</project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue