Skip to content

Commit 14e5095

Browse files
Merge pull request #100 from astrolabsoftware/0.2.2
Bump version: 0.2.1 --> 0.2.2
2 parents fa3c548 + dad078f commit 14e5095

21 files changed

+36
-23
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 0.2.2
2+
3+
- Add the conversion from FITS file (single HDU) to parquet ([PR](https://github.com/astrolabsoftware/spark3D/pull/92))
4+
- Tools to perform live 3D RDD visualisation (in progress) ([PR](https://github.com/astrolabsoftware/spark3D/pull/93))
5+
- Several updates to the Travis CI ([PR](https://github.com/astrolabsoftware/spark3D/pull/96))
6+
- Add example dealing with collapse function in pyspark ([PR](https://github.com/astrolabsoftware/spark3D/pull/97))
7+
- Deploy pyspark3d with pip ([PR](https://github.com/astrolabsoftware/spark3D/pull/98))
8+
- Clarify the use of get_spark_session and load_user_conf (for tests only!) ([PR](https://github.com/astrolabsoftware/spark3D/pull/99))
9+
110
## 0.2.1
211

312
- pyspark3d contains all the features of spark3D ([partitioning](https://github.com/astrolabsoftware/spark3D/pull/89), [operators](https://github.com/astrolabsoftware/spark3D/pull/90))

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
- [07/2018] **New location**: spark3D is an official project of [AstroLab Software](https://astrolabsoftware.github.io/)!
1212
- [07/2018] **Release**: version 0.1.3, 0.1.4, 0.1.5
1313
- [08/2018] **Release**: version 0.2.0, 0.2.1 (pyspark3d)
14-
- [09/2018] **Release**: version 0.2.2 (pip installation)
14+
- [09/2018] **Release**: version 0.2.2
1515

16-
<p align="center"><img width="500" src="https://github.com/astrolabsoftware/spark3D/raw/master/pic/spark3d_lib_0.2.1.png"/>
16+
<p align="center"><img width="500" src="https://github.com/astrolabsoftware/spark3D/raw/master/pic/spark3d_lib_0.2.2.png"/>
1717
</p>
1818

1919
## Installation and tutorials
@@ -23,7 +23,7 @@
2323
You can link spark3D to your project (either spark-shell or spark-submit) by specifying the coordinates:
2424

2525
```
26-
spark-submit --packages "com.github.astrolabsoftware:spark3d_2.11:0.2.1"
26+
spark-submit --packages "com.github.astrolabsoftware:spark3d_2.11:0.2.2"
2727
```
2828

2929
### Python

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import xerial.sbt.Sonatype._
1919
lazy val root = (project in file(".")).
2020
settings(
2121
inThisBuild(List(
22-
version := "0.2.1"
22+
version := "0.2.2"
2323
)),
2424
// Name of the application
2525
name := "spark3D",

docs/01_installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ another version, feel free to contact us. In addition to Spark, the library has
2020
You can link spark3D to your project (either `spark-shell` or `spark-submit`) by specifying the coordinates:
2121

2222
```bash
23-
toto:~$ spark-submit --packages "com.github.astrolabsoftware:spark3d_2.11:0.2.1" <...>
23+
toto:~$ spark-submit --packages "com.github.astrolabsoftware:spark3d_2.11:0.2.2" <...>
2424
```
2525

2626
It might not contain the latest features though (see *Building from source*).
@@ -69,7 +69,7 @@ result on the screen, plus details of the coverage at
6969
First produce a jar of the spark3D library, and then launch a spark-shell by specifying the external dependencies:
7070

7171
```bash
72-
toto:~$ JARS="target/scala-2.11/spark3d_2.11-0.2.1.jar,lib/jhealpix.jar"
72+
toto:~$ JARS="target/scala-2.11/spark3d_2.11-0.2.2.jar,lib/jhealpix.jar"
7373
toto:~$ PACKAGES="com.github.astrolabsoftware:spark-fits_2.11:0.6.0"
7474
toto:~$ spark-shell --jars $JARS --packages $PACKAGES
7575
```
@@ -83,7 +83,7 @@ scala> // etc...
8383
Note that if you make a fat jar (that is building with `sbt ++${SCALA_VERSION} assembly` and not `sbt ++${SCALA_VERSION} package`), you do not need to specify external dependencies as they are already included in the resulting jar:
8484

8585
```bash
86-
toto:~$ FATJARS="target/scala-2.11/spark3D-assembly-0.2.1.jar"
86+
toto:~$ FATJARS="target/scala-2.11/spark3D-assembly-0.2.2.jar"
8787
toto:~$ spark-shell --jars $FATJARS
8888
```
8989

@@ -188,7 +188,7 @@ and then launch a pyspark shell:
188188

189189
```bash
190190
toto:~$ PYSPARK_DRIVER_PYTHON=ipython pyspark \
191-
--jars /path/to/target/scala-2.11/spark3D-assembly-0.2.1.jar
191+
--jars /path/to/target/scala-2.11/spark3D-assembly-0.2.2.jar
192192
```
193193

194194
You should be able to import objects:

docs/_pages/home.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ header:
88
cta_url: "/docs/installation/"
99
caption:
1010
intro:
11-
- excerpt: '<p><font size="6">Spark extension for processing large-scale 3D data sets: Astrophysics, High Energy Physics, Meteorology, ...</font></p><br /><a href="https://github.com/astrolabsoftware/spark3D/releases/tag/0.2.1">Latest release v0.2.1</a>'
11+
- excerpt: '<p><font size="6">Spark extension for processing large-scale 3D data sets: Astrophysics, High Energy Physics, Meteorology, ...</font></p><br /><a href="https://github.com/astrolabsoftware/spark3D/releases/tag/0.2.2">Latest release v0.2.2</a>'
1212
excerpt: '{::nomarkdown}<iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=astrolabsoftware&repo=spark3D&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe> <iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=astrolabsoftware&repo=spark3D&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="158px" height="30px"></iframe>{:/nomarkdown}'
1313
feature_row:
1414
- image_path:

examples/jupyter/CrossMatch.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@
124124
"%AddDeps org.swinglabs swingx 1.6.1\n",
125125
"\n",
126126
"// Add the spark3d JAR. To generate it, run `sbt ++2.11.8 package` at the root of the package\n",
127-
"%AddJar file:/Users/julien/Documents/workspace/myrepos/spark3D/target/scala-2.11/spark3d_2.11-0.1.5.jar\n",
127+
"%AddJar file:/Users/julien/Documents/workspace/myrepos/spark3D/target/scala-2.11/spark3d_2.11-0.2.2.jar\n",
128128
"\n",
129129
"// Add healpix JAR\n",
130130
"%AddJar file:/Users/julien/Documents/workspace/myrepos/spark3D/lib/jhealpix.jar"

examples/jupyter/onion_partitioning.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"%AddDeps org.swinglabs swingx 1.6.1\n",
7676
"\n",
7777
"// Add the spark3d JAR. To generate it, run `sbt ++2.11.8 package` at the root of the package\n",
78-
"%AddJar file:/Users/julien/Documents/workspace/myrepos/spark3D/target/scala-2.11/spark3d_2.11-0.1.5.jar\n",
78+
"%AddJar file:/Users/julien/Documents/workspace/myrepos/spark3D/target/scala-2.11/spark3d_2.11-0.2.2.jar\n",
7979
"\n",
8080
"// Add healpix JAR\n",
8181
"%AddJar file:/Users/julien/Documents/workspace/myrepos/spark3D/lib/jhealpix.jar"

examples/jupyter/windowQuery.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
"%AddDeps org.swinglabs swingx 1.6.1\n",
7878
"\n",
7979
"// Add the spark3d JAR. To generate it, run `sbt ++2.11.8` package at the root of the package\n",
80-
"%AddJar file:/Users/julien/Documents/workspace/myrepos/spark3D/target/scala-2.11/spark3D-assembly-0.2.0.jar\n",
80+
"%AddJar file:/Users/julien/Documents/workspace/myrepos/spark3D/target/scala-2.11/spark3D-assembly-0.2.2.jar\n",
8181
"\n",
8282
"// // Add healpix JAR\n",
8383
"// %AddJar file:/Users/julien/Documents/workspace/myrepos/spark3D/lib/jhealpix.jar"

pic/spark3d_lib_0.2.2.png

192 KB
Loading

pyspark3d/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# pyspark3d and spark3D have the same version number
2-
__version__ = "0.2.1"
2+
__version__ = "0.2.2"
33
__scala_version__ = "2.11"
44
__scala_version_all__ = "2.11.8"

0 commit comments

Comments
 (0)