Skip to content

Commit 0a27f80

Browse files
committed
Version 1.9.0 release
1 parent 137ebae commit 0a27f80

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
[![Build Status](https://api.travis-ci.org/PDAL/java.svg)](http://travis-ci.org/PDAL/java) [![Join the chat at https://gitter.im/PDAL/PDAL](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/PDAL/PDAL?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.pdal/pdal/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.pdal/pdal)
44

55
Java bindings to use PDAL on JVM (supports PDAL >= 1.4).
6+
Mac users can experience some issues with bindings that were build against a different PDAL version,
7+
so try to use a consistent PDAL version.
68

79
It is released independently from PDAL itself as of PDAL 1.7.
810

@@ -16,8 +18,8 @@ resolvers ++= Seq(
1618
)
1719

1820
libraryDependencies ++= Seq(
19-
"io.pdal" %% "pdal" % "1.8.5", // core library
20-
"io.pdal" % "pdal-native" % "1.8.5" // jni bindings
21+
"io.pdal" %% "pdal" % "1.9.0", // core library
22+
"io.pdal" % "pdal-native" % "1.9.0" // jni bindings
2123
)
2224
```
2325

@@ -39,8 +41,8 @@ Scala API to build pipeline expressions instead of writing a raw JSON.
3941

4042
```scala
4143
libraryDependencies ++= Seq(
42-
"io.pdal" %% "pdal-scala" % "1.8.5", // scala core library
43-
"io.pdal" % "pdal-native" % "1.8.5" // jni bindings
44+
"io.pdal" %% "pdal-scala" % "1.9.0", // scala core library
45+
"io.pdal" % "pdal-native" % "1.9.0" // jni bindings
4446
)
4547
```
4648

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name := "pdal-jni"
22

33
lazy val commonSettings = Seq(
4-
version := "1.8.7" + Environment.versionSuffix,
4+
version := "1.9.0" + Environment.versionSuffix,
55
scalaVersion := "2.11.12",
66
crossScalaVersions := Seq("2.12.8", "2.11.12"),
77
organization := "io.pdal",

examples/pdal-jni/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resolvers ++= Seq(
2121

2222
fork := true
2323

24-
val pdalVersion = "1.8.6"
24+
val pdalVersion = "1.9.0"
2525

2626
libraryDependencies ++= Seq(
2727
"io.pdal" %% "pdal" % pdalVersion,

project/Version.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
object Version {
22
val circe = "0.11.1"
33
val scalaTest = "3.0.7"
4-
val jtsCore = "1.16.0"
4+
val jtsCore = "1.16.1"
55
}

scripts/merge-native.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ done
1717
export PDAL_VERSION_SUFFIX=${PDAL_VERSION_SUFFIX-"-SNAPSHOT"}
1818

1919
cd ./native/target
20-
rm -f ./pdal-native-1.8.7${PDAL_VERSION_SUFFIX}.jar
20+
rm -f ./pdal-native-1.9.0${PDAL_VERSION_SUFFIX}.jar
2121
rm -rf ./tmp; mkdir -p ./tmp
2222

23-
cd tmp; jar -xf ../pdal-native-x86_64-darwin-1.8.7${PDAL_VERSION_SUFFIX}.jar; cd ~-
24-
cd tmp; jar -xf ../pdal-native-x86_64-linux-1.8.7${PDAL_VERSION_SUFFIX}.jar; cd ~-
23+
cd tmp; jar -xf ../pdal-native-x86_64-darwin-1.9.0${PDAL_VERSION_SUFFIX}.jar; cd ~-
24+
cd tmp; jar -xf ../pdal-native-x86_64-linux-1.9.0${PDAL_VERSION_SUFFIX}.jar; cd ~-
2525

26-
jar -cvf pdal-native-1.8.7${PDAL_VERSION_SUFFIX}.jar -C tmp .
26+
jar -cvf pdal-native-1.9.0${PDAL_VERSION_SUFFIX}.jar -C tmp .
2727

2828
cd ./tmp
2929

0 commit comments

Comments
 (0)