Skip to content

Commit 6d75c1b

Browse files
committed
CHANGELOG.md rotate
1 parent 505d749 commit 6d75c1b

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [2.8.0] - 2024-09-10
10+
## Added
11+
- PDAL 2.8.x [#105](https://github.com/pdal/java/pull/105) (@pomadchin)
12+
13+
## Changed
14+
- PDAL dependencies update [#107](https://github.com/pdal/java/pull/107) (@pomadchin)
15+
- Bump PDAL JNI lib version up to 2.8 [#106](https://github.com/pdal/java/pull/106) (@pomadchin)
16+
917
## [2.7.0] - 2024-03-22
1018
## Added
1119
- PDAL 2.7.x [#97](https://github.com/pdal/java/pull/97) (@pomadchin)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ It is released independently from PDAL itself as of PDAL 1.7.
1919

2020
## Usage
2121
You can use `pdal-native` dep published into maven central in case you don't have installed JNI bindings and to avoid steps described below.
22-
Dependency contains bindings for `x86_64-darwin`, `arm64-darwin`, and `x86_64-linux`, other versions are not supported yet.
22+
Dependency contains bindings for `arm64-darwin`, and `x86_64-linux`, other versions are not supported yet. We dropped `x86_64-darwin` as of the PDAL Java `2.8.0` release.
2323

2424
### Versioning scheme
2525

@@ -46,7 +46,7 @@ If you would like to use your own bindings, it is necessary to set `java.library
4646

4747
```scala
4848
// macOS X example with manual JNI installation
49-
// cp -f native/target/resource_managed/main/native/x86_64-darwin/libpdaljni.2.1.dylib /usr/local/lib/libpdaljni.2.1.dylib
49+
// cp -f native/target/resource_managed/main/native/arm64-darwin/libpdaljni.2.8.dylib /usr/local/lib/libpdaljni.2.8.dylib
5050
// place built binary into /usr/local/lib, and pass java.library.path to your JVM
5151
javaOptions += "-Djava.library.path=/usr/local/lib"
5252
```

0 commit comments

Comments
 (0)