Skip to content

Commit cf205bd

Browse files
author
Joe Nievelt
committed
Prepare for release of 0.8.0
1 parent 512ed54 commit cf205bd

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Bijection #
22

3+
### 0.8.0
4+
* add twitter util Buf <-> Array[Byte] bijection https://github.com/twitter/bijection/pull/208
5+
* upgrade testing libraries https://github.com/twitter/bijection/pull/207
6+
* Add implicit conversion for GZippedBase64String to String https://github.com/twitter/bijection/pull/203
7+
* Make property tests work again https://github.com/twitter/bijection/pull/198
8+
* Add a module for finagle-mysql bijections. https://github.com/twitter/bijection/pull/197
9+
* Build bijection-scrooge for scala 2.11 https://github.com/twitter/bijection/pull/196
10+
311
### 0.7.2
412
* FIX: gzip Bijection resource leak. https://github.com/twitter/bijection/pull/193
513
* Use new Travis CI infrastructure https://github.com/twitter/bijection/pull/191

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Discussion occurs primarily on the [Bijection mailing list](https://groups.googl
134134

135135
## Maven
136136

137-
Bijection modules are available on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.7.2`.
137+
Bijection modules are available on maven central. The current groupid and version for all modules is, respectively, `"com.twitter"` and `0.8.0`.
138138

139139
Current published artifacts are
140140

project/Build.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ object BijectionBuild extends Build {
1818
val sharedSettings = Project.defaultSettings ++ osgiSettings ++ scalariformSettings ++ Seq(
1919
organization := "com.twitter",
2020

21-
crossScalaVersions := Seq("2.10.4", "2.11.5"),
21+
crossScalaVersions := Seq("2.10.5", "2.11.5"),
2222

2323
ScalariformKeys.preferences := formattingPreferences,
2424

25-
scalaVersion := "2.10.4",
25+
scalaVersion := "2.10.5",
2626

2727
javacOptions ++= Seq("-source", "1.6", "-target", "1.6"),
2828

@@ -122,7 +122,7 @@ object BijectionBuild extends Build {
122122
def youngestForwardCompatible(subProj: String) =
123123
Some(subProj)
124124
.filterNot(unreleasedModules.contains(_))
125-
.map { s => "com.twitter" % ("bijection-" + s + "_2.10") % "0.7.0" }
125+
.map { s => "com.twitter" % ("bijection-" + s + "_2.10") % "0.8.0" }
126126

127127
def osgiExportAll(packs: String*) =
128128
OsgiKeys.exportPackage := packs.map(_ + ".*;version=${Bundle-Version}")

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11

2-
version in ThisBuild := "0.7.2"
2+
version in ThisBuild := "0.8.0"

0 commit comments

Comments
 (0)