Skip to content

Commit 2063ee3

Browse files
committed
Bump project version up
1 parent a1cab28 commit 2063ee3

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
@@ -18,8 +18,8 @@ resolvers ++= Seq(
1818
)
1919

2020
libraryDependencies ++= Seq(
21-
"io.pdal" %% "pdal" % "2.1.3", // core library
22-
"io.pdal" % "pdal-native" % "2.1.3" // jni bindings
21+
"io.pdal" %% "pdal" % "2.1.4", // core library
22+
"io.pdal" % "pdal-native" % "2.1.4" // jni bindings
2323
)
2424
```
2525

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

4242
```scala
4343
libraryDependencies ++= Seq(
44-
"io.pdal" %% "pdal-scala" % "2.1.3", // scala core library
45-
"io.pdal" % "pdal-native" % "2.1.3" // jni bindings
44+
"io.pdal" %% "pdal-scala" % "2.1.4", // scala core library
45+
"io.pdal" % "pdal-native" % "2.1.4" // jni bindings
4646
)
4747
```
4848

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 := "2.1.4" + Environment.versionSuffix,
4+
version := "2.1.5" + Environment.versionSuffix,
55
scalaVersion := "2.13.1",
66
crossScalaVersions := Seq("2.13.1", "2.12.10", "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-2.1.4${PDAL_VERSION_SUFFIX}.jar
20+
rm -f ./pdal-native-2.1.5${PDAL_VERSION_SUFFIX}.jar
2121
rm -rf ./tmp; mkdir -p ./tmp
2222

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

26-
jar -cvf pdal-native-2.1.4${PDAL_VERSION_SUFFIX}.jar -C tmp .
26+
jar -cvf pdal-native-2.1.5${PDAL_VERSION_SUFFIX}.jar -C tmp .
2727

2828
cd ./tmp
2929

0 commit comments

Comments
 (0)