File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed
Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ resolvers ++= Seq(
1616)
1717
1818libraryDependencies ++= Seq (
19- " io.pdal" %% " pdal" % " 1.8.2 " , // core library
20- " io.pdal" % " pdal-native" % " 1.8.2 " // jni bindings
19+ " io.pdal" %% " pdal" % " 1.8.4 " , // core library
20+ " io.pdal" % " pdal-native" % " 1.8.4 " // jni bindings
2121)
2222```
2323
@@ -39,8 +39,8 @@ Scala API to build pipeline expressions instead of writing a raw JSON.
3939
4040``` scala
4141libraryDependencies ++= Seq (
42- " io.pdal" %% " pdal-scala" % " 1.8.2 " , // scala core library
43- " io.pdal" % " pdal-native" % " 1.8.2 " // jni bindings
42+ " io.pdal" %% " pdal-scala" % " 1.8.4 " , // scala core library
43+ " io.pdal" % " pdal-native" % " 1.8.4 " // jni bindings
4444)
4545```
4646
Original file line number Diff line number Diff line change 11name := " pdal-jni"
22
33lazy val commonSettings = Seq (
4- version := " 1.8.4 " + Environment .versionSuffix,
4+ version := " 1.8.5 " + Environment .versionSuffix,
55 scalaVersion := " 2.11.12" ,
66 crossScalaVersions := Seq (" 2.12.8" , " 2.11.12" ),
77 organization := " io.pdal" ,
Original file line number Diff line number Diff line change 1717export PDAL_VERSION_SUFFIX=${PDAL_VERSION_SUFFIX-" -SNAPSHOT" }
1818
1919cd ./native/target
20- rm -f ./pdal-native-1.8.4 ${PDAL_VERSION_SUFFIX} .jar
20+ rm -f ./pdal-native-1.8.5 ${PDAL_VERSION_SUFFIX} .jar
2121rm -rf ./tmp; mkdir -p ./tmp
2222
23- cd tmp; jar -xf ../pdal-native-x86_64-darwin-1.8.4 ${PDAL_VERSION_SUFFIX} .jar; cd ~ -
24- cd tmp; jar -xf ../pdal-native-x86_64-linux-1.8.4 ${PDAL_VERSION_SUFFIX} .jar; cd ~ -
23+ cd tmp; jar -xf ../pdal-native-x86_64-darwin-1.8.5 ${PDAL_VERSION_SUFFIX} .jar; cd ~ -
24+ cd tmp; jar -xf ../pdal-native-x86_64-linux-1.8.5 ${PDAL_VERSION_SUFFIX} .jar; cd ~ -
2525
26- jar -cvf pdal-native-1.8.0 ${PDAL_VERSION_SUFFIX} .jar -C tmp .
26+ jar -cvf pdal-native-1.8.5 ${PDAL_VERSION_SUFFIX} .jar -C tmp .
2727
2828cd ./tmp
2929
You can’t perform that action at this time.
0 commit comments