Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump bijection/algebird versions #253

Merged
merged 2 commits into from
Dec 18, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ object StorehausBuild extends Build {
.filterNot(unreleasedModules.contains(_))
.map { s => "com.twitter" % ("storehaus-" + s + "_2.10") % "0.10.0" }

val algebirdVersion = "0.7.0"
val bijectionVersion = "0.6.3"
val algebirdVersion = "0.8.2"
val bijectionVersion = "0.7.0"
val utilVersion = "6.22.0"
val scaldingVersion = "0.11.1"
lazy val storehaus = Project(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ class CyclicIncrementProvider[@specialized(Int, Long) K: Successible]
nextSideCount: Int,
maxNextSideVal: K) extends IdProvider[CyclicIncrement[K]] {

implicit val ord = implicitly[Successible[K]].ordering
implicit val ord = implicitly[Successible[K]].partialOrdering
private def next(v: K) =
Successible.next(v).getOrElse(throw new IllegalStateException("Hit maximum value for increment"))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ import org.json4s.{native, NoTypeHints}
* @since 1/13/14
*/
class ElasticSearchStoreSpecs extends Specification {
sequential

private implicit val formats = native.Serialization.formats(NoTypeHints)

private val person = Person("Joe", "Smith", 29)
Expand Down