Skip to content

Commit 08af2fc

Browse files
committed
Fixed version numbers in README files
1 parent 2efb907 commit 08af2fc

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ using Maven by adding the following dependency information to your pom.xml file:
3232
<dependency>
3333
<groupId>amplab</groupId>
3434
<artifactId>succinct-core</artifactId>
35-
<version>0.1.7</version>
35+
<version>0.1.8</version>
3636
</dependency>
3737
```
3838

@@ -55,7 +55,7 @@ library using Apache Maven by adding the following dependency information to you
5555
<dependency>
5656
<groupId>amplab</groupId>
5757
<artifactId>succinct-spark</artifactId>
58-
<version>0.1.7</version>
58+
<version>0.1.8</version>
5959
</dependency>
6060
```
6161

@@ -67,13 +67,13 @@ for spark-submit and Maven instructions):
6767

6868
```
6969
resolvers += "Spark Packages Repo" at "http://dl.bintray.com/spark-packages/maven"
70-
libraryDependencies += "amplab" % "succinct" % "0.1.7"
70+
libraryDependencies += "amplab" % "succinct" % "0.1.8"
7171
```
7272

7373
The succinct-spark jar file can also be added to a Spark shell using the
7474
`--jars` command line option. For example, to include it when starting the
7575
spark shell:
7676

7777
```
78-
$ bin/spark-shell --jars succinct-0.1.7.jar
78+
$ bin/spark-shell --jars succinct-0.1.8.jar
7979
```

core/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ using Maven by adding the following dependency information to your pom.xml file:
1717
<dependency>
1818
<groupId>edu.berkeley.cs.succinct</groupId>
1919
<artifactId>succinct-core</artifactId>
20-
<version>0.1.7</version>
20+
<version>0.1.8</version>
2121
</dependency>
2222
```
2323

spark/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ library using Apache Maven by adding the following dependency information to you
2121
<dependency>
2222
<groupId>amplab</groupId>
2323
<artifactId>succinct-spark</artifactId>
24-
<version>0.1.6</version>
24+
<version>0.1.8</version>
2525
</dependency>
2626
```
2727

@@ -33,15 +33,15 @@ for spark-submit and Maven instructions):
3333

3434
```
3535
resolvers += "Spark Packages Repo" at "http://dl.bintray.com/spark-packages/maven"
36-
libraryDependencies += "amplab" % "succinct" % "0.1.7"
36+
libraryDependencies += "amplab" % "succinct" % "0.1.8"
3737
```
3838

3939
The succinct-spark jar file can also be added to a Spark shell using the
4040
`--jars` command line option. For example, to include it when starting the
4141
spark shell:
4242

4343
```
44-
$ bin/spark-shell --jars succinct-0.1.7.jar
44+
$ bin/spark-shell --jars succinct-0.1.8.jar
4545
```
4646

4747
## Usage

0 commit comments

Comments
 (0)