From 6d75c1b6dc87ab1504422e4185b24cb63295108a Mon Sep 17 00:00:00 2001 From: Grigory Pomadchin Date: Tue, 10 Sep 2024 20:54:17 -0400 Subject: [PATCH] CHANGELOG.md rotate --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d37d01..38809bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.8.0] - 2024-09-10 +## Added +- PDAL 2.8.x [#105](https://github.com/pdal/java/pull/105) (@pomadchin) + +## Changed +- PDAL dependencies update [#107](https://github.com/pdal/java/pull/107) (@pomadchin) +- Bump PDAL JNI lib version up to 2.8 [#106](https://github.com/pdal/java/pull/106) (@pomadchin) + ## [2.7.0] - 2024-03-22 ## Added - PDAL 2.7.x [#97](https://github.com/pdal/java/pull/97) (@pomadchin) diff --git a/README.md b/README.md index a6d7cc8..a91c3ff 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ It is released independently from PDAL itself as of PDAL 1.7. ## Usage 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. -Dependency contains bindings for `x86_64-darwin`, `arm64-darwin`, and `x86_64-linux`, other versions are not supported yet. +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. ### Versioning scheme @@ -46,7 +46,7 @@ If you would like to use your own bindings, it is necessary to set `java.library ```scala // macOS X example with manual JNI installation -// cp -f native/target/resource_managed/main/native/x86_64-darwin/libpdaljni.2.1.dylib /usr/local/lib/libpdaljni.2.1.dylib +// cp -f native/target/resource_managed/main/native/arm64-darwin/libpdaljni.2.8.dylib /usr/local/lib/libpdaljni.2.8.dylib // place built binary into /usr/local/lib, and pass java.library.path to your JVM javaOptions += "-Djava.library.path=/usr/local/lib" ```