Skip to content

Commit

Permalink
update version to 2.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
haifengl committed Oct 12, 2016
1 parent ca53eba commit fa1c29b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,13 +69,13 @@ GraphX too.
To use Unicorn as a library, add the following to SBT build file.

```scala
libraryDependencies += "com.github.haifengl" % "unicorn-unibase_2.11" % "2.1.0"
libraryDependencies += "com.github.haifengl" % "unicorn-unibase_2.11" % "2.1.1"
```

If you need additional HBase-only features, please link to the module `Narwhal`.

```scala
libraryDependencies += "com.github.haifengl" % "unicorn-narwhal_2.11" % "2.1.0"
libraryDependencies += "com.github.haifengl" % "unicorn-narwhal_2.11" % "2.1.1"
```

With the module `Narwhal` that is specialized for HBase, advanced features such
Expand All @@ -88,7 +88,7 @@ of JSON objects. Meanwhile, it is type
safe and may capture many errors during the compile time. To use only the JSON library,

```scala
libraryDependencies += "com.github.haifengl" % "unicorn-json_2.11" % "2.1.0"
libraryDependencies += "com.github.haifengl" % "unicorn-json_2.11" % "2.1.1"
```

Download
Expand Down
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lazy val commonSettings = Seq(
organization := "com.github.haifengl",
organizationName := "Haifeng Li",
organizationHomepage := Some(url("http://haifengl.github.io/")),
version := "2.1.0",
version := "2.1.1",
scalaVersion := "2.11.8",
scalacOptions := Seq("-feature", "-language:_", "-unchecked", "-deprecation", "-encoding", "utf8"),
scalacOptions in Test ++= Seq("-Yrangepos"),
Expand Down Expand Up @@ -55,7 +55,7 @@ lazy val nonPubishSettings = commonSettings ++ Seq(
)

lazy val root = project.in(file(".")).settings(nonPubishSettings: _*)
.aggregate(util, oid, json, bigtable, hbase, cassandra, accumulo, rocksdb, unibase, narwhal, sql, shell, rhino)
.aggregate(util, oid, json, bigtable, hbase, cassandra, accumulo, rocksdb, unibase, narwhal, sql, transaction, shell, rhino)

lazy val util = project.in(file("util")).settings(commonSettings: _*)

Expand All @@ -81,6 +81,8 @@ lazy val narwhal = project.in(file("narwhal")).settings(commonSettings: _*).depe

lazy val sql = project.in(file("sql")).settings(commonSettings: _*).dependsOn(util, narwhal)

lazy val transaction = project.in(file("transaction")).settings(commonSettings: _*).dependsOn(util, narwhal)

//lazy val search = project.in(file("search")).settings(nonPubishSettings: _*).dependsOn(unibase)

lazy val shell = project.in(file("shell")).settings(nonPubishSettings: _*).dependsOn(unibase, narwhal, sql, hbase, cassandra, accumulo, rocksdb)
Expand Down

0 comments on commit fa1c29b

Please sign in to comment.