Skip to content

Commit

Permalink
CHANGELOG.md rotate
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Sep 11, 2024
1 parent 505d749 commit 6d75c1b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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"
```
Expand Down

0 comments on commit 6d75c1b

Please sign in to comment.