Skip to content

Commit

Permalink
2.0.0-beta22 release (huge thanks to mattpap!)
Browse files Browse the repository at this point in the history
  • Loading branch information
jliszka committed Jan 13, 2013
1 parent d194668 commit 8c367be
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
## Release Notes

# 2.0.0-beta22

- support for scala 2.9.2 and 2.10.0 (mattpap)
- support for Model.distinct(_.field) (mattpap)
- sbt 0.12.0 (mattpap)

# 2.0.0-beta21

- fix signatures for $or queries
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -37,13 +37,13 @@ Because Rogue is designed to work with several versions of lift-mongodb-record (
you'll want to declare your dependency on Rogue as `intransitive` and declare an explicit dependency
on the version of Lift you want to target. In sbt, that would look like the following:

val rogueField = "com.foursquare" %% "rogue-field" % "2.0.0-beta21" intransitive()
val rogueCore = "com.foursquare" %% "rogue-core" % "2.0.0-beta21" intransitive()
val rogueLift = "com.foursquare" %% "rogue-lift" % "2.0.0-beta21" intransitive()
val rogueField = "com.foursquare" %% "rogue-field" % "2.0.0-beta22" intransitive()
val rogueCore = "com.foursquare" %% "rogue-core" % "2.0.0-beta22" intransitive()
val rogueLift = "com.foursquare" %% "rogue-lift" % "2.0.0-beta22" intransitive()
val liftMongoRecord = "net.liftweb" %% "lift-mongodb-record" % "2.4-M5"

You can substitute "2.4-M2" for whatever version of Lift you are using. Rogue has been used in
production against Lift 2.2 and 2.4-M2. If you encounter problems using Rogue with other versions
production against Lift 2.2 and 2.4-M5. If you encounter problems using Rogue with other versions
of Lift, please let us know.

Join the [rogue-users google group](http://groups.google.com/group/rogue-users) for help, bug reports,
Expand Down
2 changes: 1 addition & 1 deletion project/RogueBuild.scala
Expand Up @@ -14,7 +14,7 @@ object RogueBuild extends Build {
lazy val lift = Project("rogue-lift", file("rogue-lift/")) dependsOn(core % "compile;test->test;runtime->runtime")

lazy val defaultSettings: Seq[Setting[_]] = Seq(
version := "2.0.0-beta22-SNAPSHOT",
version := "2.0.0-beta22",
organization := "com.foursquare",
crossScalaVersions := Seq("2.9.1", "2.9.2", "2.10.0", "2.9.0-1", "2.9.0"),
publishMavenStyle := true,
Expand Down

0 comments on commit 8c367be

Please sign in to comment.