-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
object Versions { | ||
|
||
object Core { | ||
val stable = "1.5.5" | ||
val head = "1.5.6-SNAPSHOT" | ||
val stable = "1.5.6" | ||
val head = "1.5.7-SNAPSHOT" | ||
} | ||
|
||
object Macros { | ||
val stable = "1.5.5" | ||
val head = "1.5.6-SNAPSHOT" | ||
val stable = "1.5.6" | ||
val head = "1.5.7-SNAPSHOT" | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Warning, OSX-specific command hidden in between ;) | ||
# SBT dies if we try to do them all in one go... | ||
sbt "project circe-aggregate" +clean +publish-signed && | ||
say "Done 1" && | ||
sbt "project upickle-aggregate" +clean +publish-signed && | ||
say "Done 2" && | ||
sbt "project enumeratum-reactivemongo-bson" +clean +publish-signed && | ||
say "Done 3" && | ||
sbt "project enumeratum-play-json" +clean +publish-signed && | ||
say "Done 4" && | ||
sbt "project enumeratum-play" +clean +publish-signed && | ||
say "Done 5" && | ||
sbt "project enumeratum-argonaut" +clean +publish-signed && | ||
say "All done" |