Skip to content

Commit 7c3f68f

Browse files
Merge pull request #92 from openstreetmap/upgrade-protobuf
Upgrade Java's protobuf to 4.33.2
2 parents 0cc6f10 + ca046bc commit 7c3f68f

File tree

3 files changed

+9
-11
lines changed

3 files changed

+9
-11
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Unreleased
22

3+
## Release notes for 1.6.1 (2025-12-20)
4+
5+
- Java: Update to latest protoc and protobuf runtime versions [#92](https://github.com/openstreetmap/OSM-binary/pull/92)
6+
37
## Release notes for 1.6.0 (2024-12-10)
48

59
- Java: Update to latest protoc and protobuf runtime versions [#84](https://github.com/openstreetmap/OSM-binary/pull/84)

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,17 @@ something more complete see [libosmium](https://osmcode.org/libosmium/).
2121

2222
### Building with Maven
2323

24-
We publish the Java library to [Maven Central](https://search.maven.org/):
24+
We publish the Java library to [Maven Central](https://mvnrepository.com/artifact/org.openstreetmap.pbf/osmpbf): ![Maven Central](https://img.shields.io/maven-central/v/org.openstreetmap.pbf/osmpbf.svg)
2525

2626
```xml
2727
<dependency>
2828
<groupId>org.openstreetmap.pbf</groupId>
2929
<artifactId>osmpbf</artifactId>
30-
<version>1.5.0</version>
30+
<version>${LATEST_VERSION}</version>
3131
</dependency>
3232
```
3333

34+
3435
To build the Java library run:
3536

3637
```sh

pom.xml

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
<properties>
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
34-
<protobuf.version>4.28.3</protobuf.version>
34+
<protobuf.version>4.33.2</protobuf.version>
3535
</properties>
3636

3737
<build>
@@ -139,20 +139,13 @@
139139
<version>0.6.0</version>
140140
<extensions>true</extensions>
141141
<configuration>
142-
<publishingServerId>central-lenni</publishingServerId>
142+
<publishingServerId>central</publishingServerId>
143143
<autoPublish>true</autoPublish>
144144
</configuration>
145145
</plugin>
146146
</plugins>
147147
</build>
148148

149-
<pluginRepositories>
150-
<pluginRepository>
151-
<id>dtrott</id>
152-
<url>http://maven.davidtrott.com/repository</url>
153-
</pluginRepository>
154-
</pluginRepositories>
155-
156149
<dependencies>
157150
<dependency>
158151
<groupId>junit</groupId>

0 commit comments

Comments
 (0)