Skip to content

Commit 027b77c

Browse files
committed
update README.md
1 parent 98b7de5 commit 027b77c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Schema and query DSL is based on [Squeryl](http://squeryl.org/).
7676
## Web framework support
7777

7878
* [Play 2.x plugin](https://github.com/aselab/scala-activerecord/tree/master/play2)
79-
* [Scalatra 2.5.x plugin](https://github.com/aselab/scala-activerecord/tree/master/scalatra)
79+
* [Scalatra 2.7.x plugin](https://github.com/aselab/scala-activerecord/tree/master/scalatra)
8080

8181
## License
8282

play2/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Scala ActiveRecord Play2.6 Plugin
1+
# Scala ActiveRecord Play2.8 Plugin
22

33
## Sample code
44

@@ -12,10 +12,10 @@ Add the following settings in `build.sbt` or `project/Build.scala`
1212

1313
```scala
1414
libraryDependencies ++= Seq(
15-
"com.github.aselab" %% "scala-activerecord" % "0.4.0-SNAPSHOT",
16-
"com.github.aselab" %% "scala-activerecord-play2" % "0.4.0-SNAPSHOT",
15+
"com.github.aselab" %% "scala-activerecord" % "0.6.0",
16+
"com.github.aselab" %% "scala-activerecord-play2" % "0.6.0",
1717
jdbc,
18-
"com.h2database" % "h2" % "1.4.196" // See Supported databases
18+
"com.h2database" % "h2" % "1.4.200" // See Supported databases
1919
)
2020
```
2121

scalatra/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Scala ActiveRecord Scalatra 2.5.x Plugin
1+
# Scala ActiveRecord Scalatra 2.7.x Plugin
22

33
## Sample code
44

@@ -12,10 +12,10 @@ Add the following settings in `build.sbt` or `project/Build.scala`
1212

1313
```scala
1414
libraryDependencies ++= Seq(
15-
"org.scalatra" %% "scalatra" % "2.5.1",
16-
"com.github.aselab" %% "scala-activerecord" % "0.4.0",
17-
"com.github.aselab" %% "scala-activerecord-scalatra" % "0.4.0",
18-
"com.h2database" % "h2" % "1.4.196" // See Supported databases
15+
"org.scalatra" %% "scalatra" % "2.7.0",
16+
"com.github.aselab" %% "scala-activerecord" % "0.6.0",
17+
"com.github.aselab" %% "scala-activerecord-scalatra" % "0.6.0",
18+
"com.h2database" % "h2" % "1.4.200" // See Supported databases
1919
)
2020
```
2121

0 commit comments

Comments
 (0)