Skip to content

Commit

Permalink
Bump dylib minor version up
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Oct 13, 2023
1 parent bc96320 commit 1584548
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/src/main/scala/io/pdal/Pipeline.scala
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Pipeline(val json: String, val logLevel: Int) extends Native {
@native def getLog(): String
}

object Pipeline extends NativeLoader("pdaljni.2.5") {
object Pipeline extends NativeLoader("pdaljni.2.6") {
def apply(json: String, logLevel: Int = LogLevel.Error): Pipeline = {
val p = new Pipeline(json, logLevel); p.initialize(); p
}
Expand Down
2 changes: 1 addition & 1 deletion native/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set(MAKE_COLOR_MAKEFILE ON)

project (pdaljni)
set(PROJECT_VERSION_MAJOR 2)
set(PROJECT_VERSION_MINOR 5)
set(PROJECT_VERSION_MINOR 6)
set(PROJECT_VERSION_PATCH 0)

set(PDAL_LIB_NAME pdalcpp)
Expand Down
2 changes: 1 addition & 1 deletion scripts/crosscompile-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ docker run -it --rm \
-v $HOME/.ivy2:/root/.ivy2 \
-v $HOME/.sbt:/root/.sbt \
-v $HOME/.coursier/cache:/root/.cache/coursier \
daunnc/pdal-ubuntu:2.5.1 bash -c "cd ./pdal-java; ./sbt native/compile"
daunnc/pdal-ubuntu:2.6.0 bash -c "cd ./pdal-java; ./sbt native/compile"

0 comments on commit 1584548

Please sign in to comment.