Skip to content

Commit

Permalink
Twitter-oss: Prepare OSS libraries for release
Browse files Browse the repository at this point in the history
Problem

We want to release the next versions of our Twitter OSS libraries:
 - util -> 6.43.0
 - ostrich -> 9.27.0
 - scrooge -> 4.16.0
 - finagle -> 6.44.0
 - twitter-server -> 1.29.0
 - finatra -> 2.10.0

Solution

Prepare libraries for their next releases.

RB_ID=915023
  • Loading branch information
ryanoneill authored and jenkins committed Apr 20, 2017
1 parent 9ecd6c5 commit b4bc96c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Note that ``RB_ID=#`` correspond to associated messages in commits.

Next Version

6.43.0 2017-04-20

Runtime Behavior Changes:

* util-core: `Closable.all(..)` will now catch synchronous exceptions thrown
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ for more details about how to contribute.
An example SBT dependency string for the `util-collection` tools would look like this:

```scala
val collUtils = "com.twitter" %% "util-collection" % "6.42.0"
val collUtils = "com.twitter" %% "util-collection" % "6.43.0"
```

# Units
Expand Down
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ object Util extends Build {
val branch = Process("git" :: "rev-parse" :: "--abbrev-ref" :: "HEAD" :: Nil).!!.trim
val suffix = if (branch == "master") "" else "-SNAPSHOT"

val libVersion = "6.42.0" + suffix
val libVersion = "6.43.0" + suffix
val zkVersion = "3.5.0-alpha"
val zkClientVersion = "0.0.81"
val zkGroupVersion = "0.0.92"
Expand Down

0 comments on commit b4bc96c

Please sign in to comment.