Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.

Commit 1319154

Browse files
committed
Upgrade dependencies, bump to 1.7.0.
Upgrade the following depedencies: * Hadoop from `2.7.3` to `2.7.4`. * Spark from `2.1.0` to `2.1.2`. * Circe from `0.7.0` to `0.8.0`. * Scalaz from `7.2.9` to `7.2.16`. * SLF4J and adapter libs from `1.7.24` to `1.7.25`. These should be non-breaking changes for you with the exception of Circe, which is why we have bumped the major version to `1.7.0`.
1 parent e2b760c commit 1319154

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,29 +12,29 @@ The following top level dependencies are published in Maven central:
1212

1313
**Thrift support**:
1414
```
15-
"com.intenthq.pucket" %% "pucket-thrift" % "1.6.0"
15+
"com.intenthq.pucket" %% "pucket-thrift" % "1.7.0"
1616
```
1717

1818
**Avro support**:
1919
```
20-
"com.intenthq.pucket" %% "pucket-avro" % "1.6.0"
20+
"com.intenthq.pucket" %% "pucket-avro" % "1.7.0"
2121
```
2222

2323
**Spark connectors**:
2424
```
25-
"com.intenthq.pucket" %% "pucket-spark" % "1.6.0"
25+
"com.intenthq.pucket" %% "pucket-spark" % "1.7.0"
2626
```
2727

2828
**MapReduce integration**:
2929
```
30-
"com.intenthq.pucket" %% "pucket-mapreduce" % "1.6.0"
30+
"com.intenthq.pucket" %% "pucket-mapreduce" % "1.7.0"
3131
```
3232

3333
These dependencies should be combined depending on your usages; for example if you use Thrift and Spark then use the following:
3434

3535
```
36-
"com.intenthq.pucket" %% "pucket-thrift" % "1.6.0"
37-
"com.intenthq.pucket" %% "pucket-spark" % "1.6.0"
36+
"com.intenthq.pucket" %% "pucket-thrift" % "1.7.0"
37+
"com.intenthq.pucket" %% "pucket-spark" % "1.7.0"
3838
```
3939

4040

build.sbt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import com.typesafe.sbt.SbtGit.GitKeys._
44

55
val specs2Ver = "3.8.6"
66
val parquetVer = "1.8.1"
7-
val hadoopVer = "2.7.3"
8-
val sparkVer = "2.1.0"
9-
val circeVersion = "0.7.0"
10-
val scalazVersion = "7.2.9"
7+
val hadoopVer = "2.7.4"
8+
val sparkVer = "2.1.2"
9+
val circeVersion = "0.8.0"
10+
val scalazVersion = "7.2.16"
1111

1212
val pomInfo = (
1313
<url>https://github.com/intenthq/pucket</url>
@@ -32,8 +32,8 @@ val pomInfo = (
3232

3333
lazy val commonSettings = Seq(
3434
organization := "com.intenthq.pucket",
35-
version := "1.6.0",
36-
scalaVersion := "2.11.8",
35+
version := "1.7.0",
36+
scalaVersion := "2.11.12",
3737
publishArtifact in Test := false,
3838
pomIncludeRepository := { _ => false },
3939
publishTo := {
@@ -48,10 +48,10 @@ lazy val commonSettings = Seq(
4848
autoAPIMappings := true,
4949
libraryDependencies ++= Seq(
5050
"org.apache.hadoop" % "hadoop-common" % hadoopVer % "provided,test",
51-
"org.slf4j" % "slf4j-api" % "1.7.24" % "test",
52-
"org.slf4j" % "jcl-over-slf4j" % "1.7.24" % "test",
53-
"org.slf4j" % "jul-to-slf4j" % "1.7.24" % "test",
54-
"org.slf4j" % "log4j-over-slf4j" % "1.7.24" % "test",
51+
"org.slf4j" % "slf4j-api" % "1.7.25" % "test",
52+
"org.slf4j" % "jcl-over-slf4j" % "1.7.25" % "test",
53+
"org.slf4j" % "jul-to-slf4j" % "1.7.25" % "test",
54+
"org.slf4j" % "log4j-over-slf4j" % "1.7.25" % "test",
5555
"ch.qos.logback" % "logback-classic" % "1.2.1" % "test"
5656
),
5757
excludeDependencies ++= Seq(

0 commit comments

Comments
 (0)