diff --git a/README.md b/README.md index fed71843..3dba1f18 100644 --- a/README.md +++ b/README.md @@ -74,13 +74,13 @@ You can link against this library in your program at the following coordinates: -
groupId: za.co.absa.cobrix
artifactId: spark-cobol_2.11
version: 2.6.9
+
groupId: za.co.absa.cobrix
artifactId: spark-cobol_2.11
version: 2.6.10
-
groupId: za.co.absa.cobrix
artifactId: spark-cobol_2.12
version: 2.6.9
+
groupId: za.co.absa.cobrix
artifactId: spark-cobol_2.12
version: 2.6.10
-
groupId: za.co.absa.cobrix
artifactId: spark-cobol_2.13
version: 2.6.9
+
groupId: za.co.absa.cobrix
artifactId: spark-cobol_2.13
version: 2.6.10
@@ -91,17 +91,17 @@ This package can be added to Spark using the `--packages` command line option. F ### Spark compiled with Scala 2.11 ``` -$SPARK_HOME/bin/spark-shell --packages za.co.absa.cobrix:spark-cobol_2.11:2.6.9 +$SPARK_HOME/bin/spark-shell --packages za.co.absa.cobrix:spark-cobol_2.11:2.6.10 ``` ### Spark compiled with Scala 2.12 ``` -$SPARK_HOME/bin/spark-shell --packages za.co.absa.cobrix:spark-cobol_2.12:2.6.9 +$SPARK_HOME/bin/spark-shell --packages za.co.absa.cobrix:spark-cobol_2.12:2.6.10 ``` ### Spark compiled with Scala 2.13 ``` -$SPARK_HOME/bin/spark-shell --packages za.co.absa.cobrix:spark-cobol_2.13:2.6.9 +$SPARK_HOME/bin/spark-shell --packages za.co.absa.cobrix:spark-cobol_2.13:2.6.10 ``` ## Usage @@ -238,17 +238,17 @@ to decode various binary formats. The jars that you need to get are: -* spark-cobol_2.12-2.6.9.jar -* cobol-parser_2.12-2.6.9.jar +* spark-cobol_2.12-2.6.10.jar +* cobol-parser_2.12-2.6.10.jar * scodec-core_2.12-1.10.3.jar * scodec-bits_2.12-1.1.4.jar * antlr4-runtime-4.8.jar After that you can specify these jars in `spark-shell` command line. Here is an example: ``` -$ spark-shell --packages za.co.absa.cobrix:spark-cobol_2.12:2.6.9 +$ spark-shell --packages za.co.absa.cobrix:spark-cobol_2.12:2.6.10 or -$ spark-shell --master yarn --deploy-mode client --driver-cores 4 --driver-memory 4G --jars spark-cobol_2.12-2.6.9.jar,cobol-parser_2.12-2.6.9.jar,scodec-core_2.12-1.10.3.jar,scodec-bits_2.12-1.1.4.jar,antlr4-runtime-4.8.jar +$ spark-shell --master yarn --deploy-mode client --driver-cores 4 --driver-memory 4G --jars spark-cobol_2.12-2.6.10.jar,cobol-parser_2.12-2.6.10.jar,scodec-core_2.12-1.10.3.jar,scodec-bits_2.12-1.1.4.jar,antlr4-runtime-4.8.jar Setting default log level to "WARN". To adjust logging level use sc.setLogLevel(newLevel). For SparkR, use setLogLevel(newLevel). @@ -319,7 +319,7 @@ The fat jar will have '-bundle' suffix. You can also download pre-built bundles Then, run `spark-shell` or `spark-submit` adding the fat jar as the option. ```sh -$ spark-shell --jars spark-cobol_2.12_3.3.2-2.6.10-SNAPSHOT-bundle.jar +$ spark-shell --jars spark-cobol_2.12_3.3.2-2.6.11-SNAPSHOT-bundle.jar ``` > A note for building and running tests on Windows @@ -1665,7 +1665,7 @@ at org.apache.hadoop.io.nativeio.NativeIO$POSIX.getStat(NativeIO.java:608) A: Update hadoop dll to version 3.2.2 or newer. ## Changelog -- #### 2.6.10 will be released soon. +- #### 2.6.10 released 17 January 2024. - [#653](https://github.com/AbsaOSS/cobrix/issues/653) Add support for new EBCDIC code pages: 273, 500, 1140, 1141, 1148. - #### 2.6.9 released 16 October 2023. diff --git a/cobol-converters/pom.xml b/cobol-converters/pom.xml index fdda48d9..7a471441 100644 --- a/cobol-converters/pom.xml +++ b/cobol-converters/pom.xml @@ -22,7 +22,7 @@ za.co.absa.cobrix cobrix_2.12 - 2.6.10-SNAPSHOT + 2.6.11-SNAPSHOT ../pom.xml diff --git a/cobol-parser/pom.xml b/cobol-parser/pom.xml index 4780c37f..d22fa7ad 100644 --- a/cobol-parser/pom.xml +++ b/cobol-parser/pom.xml @@ -22,7 +22,7 @@ za.co.absa.cobrix cobrix_2.12 - 2.6.10-SNAPSHOT + 2.6.11-SNAPSHOT ../pom.xml diff --git a/examples/examples-collection/pom.xml b/examples/examples-collection/pom.xml index d8b6e59a..a2a44903 100644 --- a/examples/examples-collection/pom.xml +++ b/examples/examples-collection/pom.xml @@ -31,7 +31,7 @@ 2.11 2.4.8 2.4.16 - 2.6.9 + 2.6.10 diff --git a/examples/spark-cobol-app/build.sbt b/examples/spark-cobol-app/build.sbt index a5f88d37..118d6e05 100644 --- a/examples/spark-cobol-app/build.sbt +++ b/examples/spark-cobol-app/build.sbt @@ -20,7 +20,7 @@ ThisBuild / version := "0.1.0-SNAPSHOT" ThisBuild / scalaVersion := "2.12.17" val sparkVersion = "3.3.2" -val sparkCobolVersion = "2.6.9" +val sparkCobolVersion = "2.6.10" val scalatestVersion = "3.2.14" ThisBuild / libraryDependencies ++= Seq( diff --git a/examples/spark-cobol-app/pom.xml b/examples/spark-cobol-app/pom.xml index 9c9a5b14..badaf79d 100755 --- a/examples/spark-cobol-app/pom.xml +++ b/examples/spark-cobol-app/pom.xml @@ -31,7 +31,7 @@ 2.12 3.2.14 3.3.2 - 2.6.9 + 2.6.10 diff --git a/examples/spark-cobol-s3-standalone/pom.xml b/examples/spark-cobol-s3-standalone/pom.xml index f38aa9f2..734e64fa 100644 --- a/examples/spark-cobol-s3-standalone/pom.xml +++ b/examples/spark-cobol-s3-standalone/pom.xml @@ -32,7 +32,7 @@ 2.11 3.2.3 2.4.8 - 2.6.9 + 2.6.10 3.2.4 diff --git a/examples/spark-cobol-s3/pom.xml b/examples/spark-cobol-s3/pom.xml index eeb049f1..037579a1 100644 --- a/examples/spark-cobol-s3/pom.xml +++ b/examples/spark-cobol-s3/pom.xml @@ -32,7 +32,7 @@ 2.11 3.2.14 2.4.8 - 2.6.9 + 2.6.10 diff --git a/pom.xml b/pom.xml index dfb9f8e4..60b88639 100644 --- a/pom.xml +++ b/pom.xml @@ -22,7 +22,7 @@ za.co.absa.cobrix cobrix_2.12 - 2.6.10-SNAPSHOT + 2.6.11-SNAPSHOT pom diff --git a/spark-cobol/pom.xml b/spark-cobol/pom.xml index bdcea87c..e951a675 100644 --- a/spark-cobol/pom.xml +++ b/spark-cobol/pom.xml @@ -22,7 +22,7 @@ za.co.absa.cobrix cobrix_2.12 - 2.6.10-SNAPSHOT + 2.6.11-SNAPSHOT ../pom.xml diff --git a/version.sbt b/version.sbt index 000cecb5..042129e3 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -ThisBuild / version := "2.6.10-SNAPSHOT" +ThisBuild / version := "2.6.11-SNAPSHOT"