diff --git a/README.md b/README.md index 632010c..f33b64f 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ - [10/2018] **Release**: version 0.7.0, 0.7.1 - [12/2018] **Release**: version 0.7.2 - [03/2019] **Release**: version 0.7.3 -- [05/2019] **Release**: version 0.8.0 +- [05/2019] **Release**: version 0.8.0, 0.8.1 ## spark-fits @@ -32,20 +32,20 @@ data sources (CSV, JSON, Avro, Parquet, etc). Note that spark-fits follows Apach ```bash # Scala 2.11 -spark-submit --packages "com.github.astrolabsoftware:spark-fits_2.11:0.8.0" <...> +spark-submit --packages "com.github.astrolabsoftware:spark-fits_2.11:0.8.1" <...> # Scala 2.12 -spark-submit --packages "com.github.astrolabsoftware:spark-fits_2.12:0.8.0" <...> +spark-submit --packages "com.github.astrolabsoftware:spark-fits_2.12:0.8.1" <...> ``` or you can link against this library in your program at the following coordinates in your build.sbt ```scala // Scala 2.11 -libraryDependencies += "com.github.astrolabsoftware" % "spark-fits_2.11" % "0.8.0" +libraryDependencies += "com.github.astrolabsoftware" % "spark-fits_2.11" % "0.8.1" // Scala 2.12 -libraryDependencies += "com.github.astrolabsoftware" % "spark-fits_2.12" % "0.8.0" +libraryDependencies += "com.github.astrolabsoftware" % "spark-fits_2.12" % "0.8.1" ``` Currently available: diff --git a/build.sbt b/build.sbt index da3c1b1..5cf08d9 100644 --- a/build.sbt +++ b/build.sbt @@ -19,7 +19,7 @@ import xerial.sbt.Sonatype._ lazy val root = (project in file(".")). settings( inThisBuild(List( - version := "0.8.0", + version := "0.8.1", mainClass in Compile := Some("com.astrolabsoftware.sparkfits.ReadFits") )), // Name of the application diff --git a/docs/01_installation.md b/docs/01_installation.md index dd2fe33..4df3551 100644 --- a/docs/01_installation.md +++ b/docs/01_installation.md @@ -21,10 +21,10 @@ You can link spark-fits to your project (either `spark-shell` or `spark-submit`) ```bash # Scala 2.11 -toto:~$ spark-submit --packages "com.github.astrolabsoftware:spark-fits_2.11:0.8.0" <...> +toto:~$ spark-submit --packages "com.github.astrolabsoftware:spark-fits_2.11:0.8.1" <...> # Scala 2.12 -toto:~$ spark-submit --packages "com.github.astrolabsoftware:spark-fits_2.12:0.8.0" <...> +toto:~$ spark-submit --packages "com.github.astrolabsoftware:spark-fits_2.12:0.8.1" <...> ``` It might not contain the latest features though (see *Building from source*). diff --git a/docs/02_api.md b/docs/02_api.md index b51e67c..f34c413 100644 --- a/docs/02_api.md +++ b/docs/02_api.md @@ -20,10 +20,10 @@ coordinates in your `build.sbt`: ```scala // %% will automatically set the Scala version needed for spark-fits -libraryDependencies += "com.github.astrolabsoftware" %% "spark-fits" % "0.8.0" +libraryDependencies += "com.github.astrolabsoftware" %% "spark-fits" % "0.8.1" // Alternatively you can also specify directly the Scala version, e.g. -libraryDependencies += "com.github.astrolabsoftware" % "spark-fits_2.11" % "0.8.0" +libraryDependencies += "com.github.astrolabsoftware" % "spark-fits_2.11" % "0.8.1" ``` #### Scala 2.10.6 and 2.11.X diff --git a/docs/03_interactive.md b/docs/03_interactive.md index 717d57c..e3aa478 100644 --- a/docs/03_interactive.md +++ b/docs/03_interactive.md @@ -14,10 +14,10 @@ option. For example, to include it when starting the spark shell: ```bash # Scala 2.11 -$SPARK_HOME/bin/spark-shell --packages com.github.astrolabsoftware:spark-fits_2.11:0.8.0 +$SPARK_HOME/bin/spark-shell --packages com.github.astrolabsoftware:spark-fits_2.11:0.8.1 # Scala 2.12 -$SPARK_HOME/bin/spark-shell --packages com.github.astrolabsoftware:spark-fits_2.12:0.8.0 +$SPARK_HOME/bin/spark-shell --packages com.github.astrolabsoftware:spark-fits_2.12:0.8.1 ``` Using `--packages` ensures that this library and its dependencies will @@ -25,10 +25,10 @@ be added to the classpath (make sure you use the latest version). In Python, you ```bash # Scala 2.11 -$SPARK_HOME/bin/pyspark --packages com.github.astrolabsoftware:spark-fits_2.11:0.8.0 +$SPARK_HOME/bin/pyspark --packages com.github.astrolabsoftware:spark-fits_2.11:0.8.1 # Scala 2.12 -$SPARK_HOME/bin/pyspark --packages com.github.astrolabsoftware:spark-fits_2.12:0.8.0 +$SPARK_HOME/bin/pyspark --packages com.github.astrolabsoftware:spark-fits_2.12:0.8.1 ``` Alternatively to have the latest development you can download this repo diff --git a/docs/_pages/home.md b/docs/_pages/home.md index c493fc7..cf96f46 100644 --- a/docs/_pages/home.md +++ b/docs/_pages/home.md @@ -8,7 +8,7 @@ header: cta_url: "/docs/installation/" caption: intro: - - excerpt: '

Distribute FITS data with Apache Spark: Binary tables, images and more!


Latest release: 0.8.0' + - excerpt: '

Distribute FITS data with Apache Spark: Binary tables, images and more!


Latest release: 0.8.1' excerpt: '{::nomarkdown} {:/nomarkdown}' feature_row: - image_path: diff --git a/run_image_python.sh b/run_image_python.sh index a600ba9..5894411 100755 --- a/run_image_python.sh +++ b/run_image_python.sh @@ -18,7 +18,7 @@ SCALA_VERSION=2.11.8 SCALA_VERSION_SPARK=2.11 ## Package version -VERSION=0.8.0 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package diff --git a/run_java.sh b/run_java.sh index ce0e706..2e0a261 100755 --- a/run_java.sh +++ b/run_java.sh @@ -18,7 +18,7 @@ SCALA_VERSION=2.11.8 SCALA_VERSION_SPARK=2.11 ## Package version -VERSION=0.8.0 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package diff --git a/run_python.sh b/run_python.sh index b233376..7e1619f 100755 --- a/run_python.sh +++ b/run_python.sh @@ -18,7 +18,7 @@ SCALA_VERSION=2.11.8 SCALA_VERSION_SPARK=2.11 ## Package version -VERSION=0.8.0 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package diff --git a/run_python_cluster.sh b/run_python_cluster.sh index 6e0053f..748c674 100755 --- a/run_python_cluster.sh +++ b/run_python_cluster.sh @@ -18,7 +18,7 @@ SCALA_VERSION=2.11.8 SCALA_VERSION_SPARK=2.11 ## Package version -VERSION=0.8.0 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package diff --git a/run_python_cori.sh b/run_python_cori.sh index f5eb2f3..5826cea 100755 --- a/run_python_cori.sh +++ b/run_python_cori.sh @@ -14,7 +14,7 @@ SCALA_VERSION=2.11.8 SCALA_VERSION_SPARK=2.11 ## Package version -VERSION=0.8.0 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package diff --git a/run_scala-2.11.sh b/run_scala-2.11.sh index 8ee030d..b0bebe8 100755 --- a/run_scala-2.11.sh +++ b/run_scala-2.11.sh @@ -18,7 +18,7 @@ SCALA_VERSION=2.11.8 SCALA_VERSION_SPARK=2.11 ## Package version -VERSION=0.7.3 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package diff --git a/run_scala-2.12.sh b/run_scala-2.12.sh index a315d17..ee059d7 100755 --- a/run_scala-2.12.sh +++ b/run_scala-2.12.sh @@ -18,7 +18,7 @@ SCALA_VERSION=2.12.8 SCALA_VERSION_SPARK=2.12 ## Package version -VERSION=0.7.3 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package diff --git a/run_scala_cluster.sh b/run_scala_cluster.sh index 463c660..6e9c9ab 100755 --- a/run_scala_cluster.sh +++ b/run_scala_cluster.sh @@ -18,7 +18,7 @@ SCALA_VERSION=2.11.8 SCALA_VERSION_SPARK=2.11 ## Package version -VERSION=0.8.0 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package diff --git a/run_scala_cluster_image.sh b/run_scala_cluster_image.sh index e8187f5..aa3106f 100755 --- a/run_scala_cluster_image.sh +++ b/run_scala_cluster_image.sh @@ -18,7 +18,7 @@ SCALA_VERSION=2.11.8 SCALA_VERSION_SPARK=2.11 ## Package version -VERSION=0.8.0 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package diff --git a/run_scala_cori.sh b/run_scala_cori.sh index ae8197d..d2d4d87 100755 --- a/run_scala_cori.sh +++ b/run_scala_cori.sh @@ -14,7 +14,7 @@ SCALA_VERSION=2.11.8 SCALA_VERSION_SPARK=2.11 ## Package version -VERSION=0.8.0 +VERSION=0.8.1 # Package it sbt ++${SCALA_VERSION} package