Skip to content

Commit e69acf6

Browse files
committed
[skip ci] Bump project version up
1 parent 5f72bbf commit e69acf6

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ resolvers ++= Seq(
1616
)
1717

1818
libraryDependencies ++= Seq(
19-
"io.pdal" %% "pdal" % "1.8.4", // core library
20-
"io.pdal" % "pdal-native" % "1.8.4" // jni bindings
19+
"io.pdal" %% "pdal" % "1.8.5", // core library
20+
"io.pdal" % "pdal-native" % "1.8.5" // jni bindings
2121
)
2222
```
2323

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

4040
```scala
4141
libraryDependencies ++= Seq(
42-
"io.pdal" %% "pdal-scala" % "1.8.4", // scala core library
43-
"io.pdal" % "pdal-native" % "1.8.4" // jni bindings
42+
"io.pdal" %% "pdal-scala" % "1.8.5", // scala core library
43+
"io.pdal" % "pdal-native" % "1.8.5" // jni bindings
4444
)
4545
```
4646

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.5" + Environment.versionSuffix,
4+
version := "1.8.6" + Environment.versionSuffix,
55
scalaVersion := "2.11.12",
66
crossScalaVersions := Seq("2.12.8", "2.11.12"),
77
organization := "io.pdal",

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.5${PDAL_VERSION_SUFFIX}.jar
20+
rm -f ./pdal-native-1.8.6${PDAL_VERSION_SUFFIX}.jar
2121
rm -rf ./tmp; mkdir -p ./tmp
2222

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 ~-
23+
cd tmp; jar -xf ../pdal-native-x86_64-darwin-1.8.6${PDAL_VERSION_SUFFIX}.jar; cd ~-
24+
cd tmp; jar -xf ../pdal-native-x86_64-linux-1.8.6${PDAL_VERSION_SUFFIX}.jar; cd ~-
2525

26-
jar -cvf pdal-native-1.8.5${PDAL_VERSION_SUFFIX}.jar -C tmp .
26+
jar -cvf pdal-native-1.8.6${PDAL_VERSION_SUFFIX}.jar -C tmp .
2727

2828
cd ./tmp
2929

0 commit comments

Comments
 (0)