Skip to content

Commit dae9431

Browse files
committed
version 0.3.0
1 parent df5d735 commit dae9431

File tree

2 files changed

+22
-22
lines changed

2 files changed

+22
-22
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This library is built with [postgrsql-async and mysql-async,incredible works by
1010

1111
ScalikeJDBC:
1212

13-
https://github.com/seratch/scalikejdbc
13+
https://github.com/scalikejdbc/scalikejdbc
1414

1515
ScalikeJDBC is a tidy SQL-based DB access library for Scala developers. This library naturally wraps JDBC APIs and provides you easy-to-use APIs.
1616

@@ -30,7 +30,7 @@ Add `scalikejdbc-async` to your dependencies.
3030

3131
```scala
3232
libraryDependencies ++= Seq(
33-
"com.github.seratch" %% "scalikejdbc-async" % "[0.2,)",
33+
"org.scalikejdbc" %% "scalikejdbc-async" % "[0.3,)",
3434
"com.github.mauricio" %% "postgresql-async" % "0.2.8",
3535
"com.github.mauricio" %% "mysql-async" % "0.2.8",
3636
"org.slf4j" % "slf4j-simple" % "[1.7,)" // slf4j implementation
@@ -41,17 +41,17 @@ If you're a Play2 user, use play-plugin too!
4141

4242
```scala
4343
val appDependencies = Seq(
44-
"com.github.seratch" %% "scalikejdbc-async" % "[0.2,)",
45-
"com.github.seratch" %% "scalikejdbc-async-play-plugin" % "[0.2,)",
44+
"org.scalikejdbc" %% "scalikejdbc-async" % "[0.3,)",
45+
"org.scalikejdbc" %% "scalikejdbc-async-play-plugin" % "[0.3,)",
4646
"com.github.mauricio" %% "postgresql-async" % "0.2.8"
4747
)
4848
```
4949

5050
### Example
5151

52-
- [programmerlist/ExampleSpec.scala](https://github.com/seratch/scalikejdbc-async/blob/develop/core/src/test/scala/programmerlist/ExampleSpec.scala)
53-
- [programmerlist/Company.scala](https://github.com/seratch/scalikejdbc-async/blob/develop/core/src/test/scala/programmerlist/Company.scala)
54-
- [programmerlist/Programmer.scala](https://github.com/seratch/scalikejdbc-async/blob/develop/core/src/test/scala/programmerlist/Programmer.scala)
52+
- [programmerlist/ExampleSpec.scala](https://github.com/scalikejdbc/scalikejdbc-async/blob/develop/core/src/test/scala/programmerlist/ExampleSpec.scala)
53+
- [programmerlist/Company.scala](https://github.com/scalikejdbc/scalikejdbc-async/blob/develop/core/src/test/scala/programmerlist/Company.scala)
54+
- [programmerlist/Programmer.scala](https://github.com/scalikejdbc/scalikejdbc-async/blob/develop/core/src/test/scala/programmerlist/Programmer.scala)
5555

5656
```scala
5757
import scalikejdbc._, SQLInterpolation._, async._
@@ -104,7 +104,7 @@ Transactional queries should be executed in series. You cannot use `Future.trave
104104

105105
See the play-sample project:
106106

107-
https://github.com/seratch/scalikejdbc-async/blob/develop/play-sample
107+
https://github.com/scalikejdbc/scalikejdbc-async/blob/develop/play-sample
108108

109109
### FAQ
110110

@@ -114,7 +114,7 @@ ScalikeJDBC-Async and [postgrsql-async and mysql-async](https://github.com/mauri
114114

115115
#### Is it possible to combine scalikejdbc-async with normal scalikejdbc?
116116

117-
Yes, it's possible. See [this example](https://github.com/seratch/scalikejdbc-async/blob/develop/core/src/test/scala/sample/PostgreSQLSampleSpec.scala).
117+
Yes, it's possible. See [this example](https://github.com/scalikejdbc/scalikejdbc-async/blob/develop/core/src/test/scala/sample/PostgreSQLSampleSpec.scala).
118118

119119
#### Why isn't it a part of scalikejdbc project now?
120120

project/Build.scala

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ import play.Project._
44

55
object ScalikeJDBCAsyncProject extends Build {
66

7-
lazy val _version = "0.2.6-SNAPSHOT"
8-
lazy val scalikejdbcVersion = "1.6.9"
7+
lazy val _version = "0.3.0"
8+
lazy val scalikejdbcVersion = "1.7.0"
99
lazy val mauricioVersion = "0.2.8"
10-
lazy val defaultPlayVersion = "2.2.0"
10+
lazy val defaultPlayVersion = "2.2.1"
1111

1212
lazy val core = Project(
1313
id = "core",
1414
base = file("core"),
1515
settings = Defaults.defaultSettings ++ Seq(
16-
organization := "com.github.seratch",
16+
organization := "org.scalikejdbc",
1717
name := "scalikejdbc-async",
1818
version := _version,
1919
scalaVersion := "2.10.3",
@@ -22,8 +22,8 @@ object ScalikeJDBCAsyncProject extends Build {
2222
resolvers ++= _resolvers,
2323
libraryDependencies <++= (scalaVersion) { scalaVersion =>
2424
Seq(
25-
"com.github.seratch" %% "scalikejdbc" % scalikejdbcVersion % "compile",
26-
"com.github.seratch" %% "scalikejdbc-interpolation" % scalikejdbcVersion % "compile",
25+
"org.scalikejdbc" %% "scalikejdbc" % scalikejdbcVersion % "compile",
26+
"org.scalikejdbc" %% "scalikejdbc-interpolation" % scalikejdbcVersion % "compile",
2727
"com.github.mauricio" %% "postgresql-async" % mauricioVersion % "provided",
2828
"com.github.mauricio" %% "mysql-async" % mauricioVersion % "provided",
2929
"org.postgresql" % "postgresql" % "9.2-1003-jdbc4" % "test",
@@ -47,7 +47,7 @@ object ScalikeJDBCAsyncProject extends Build {
4747
base = file("play-plugin"),
4848
settings = Defaults.defaultSettings ++ Seq(
4949
sbtPlugin := false,
50-
organization := "com.github.seratch",
50+
organization := "org.scalikejdbc",
5151
name := "scalikejdbc-async-play-plugin",
5252
version := _version,
5353
scalaVersion := "2.10.0",
@@ -74,9 +74,9 @@ object ScalikeJDBCAsyncProject extends Build {
7474
val appName = "play-sample"
7575
val appVersion = "0.1"
7676
val appDependencies = Seq(
77-
"com.github.seratch" %% "scalikejdbc" % scalikejdbcVersion,
78-
"com.github.seratch" %% "scalikejdbc-config" % scalikejdbcVersion,
79-
"com.github.seratch" %% "scalikejdbc-interpolation" % scalikejdbcVersion,
77+
"org.scalikejdbc" %% "scalikejdbc" % scalikejdbcVersion,
78+
"org.scalikejdbc" %% "scalikejdbc-config" % scalikejdbcVersion,
79+
"org.scalikejdbc" %% "scalikejdbc-interpolation" % scalikejdbcVersion,
8080
"com.github.mauricio" %% "postgresql-async" % mauricioVersion,
8181
"com.github.mauricio" %% "mysql-async" % mauricioVersion,
8282
"org.postgresql" % "postgresql" % "9.2-1003-jdbc4",
@@ -103,7 +103,7 @@ object ScalikeJDBCAsyncProject extends Build {
103103
"sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots"
104104
)
105105
val _scalacOptions = Seq("-deprecation", "-unchecked")
106-
val _pomExtra = <url>http://seratch.github.com/scalikejdbc</url>
106+
val _pomExtra = <url>http://scalikejdbc.org/</url>
107107
<licenses>
108108
<license>
109109
<name>Apache License, Version 2.0</name>
@@ -112,8 +112,8 @@ object ScalikeJDBCAsyncProject extends Build {
112112
</license>
113113
</licenses>
114114
<scm>
115-
<url>git@github.com:seratch/scalikejdbc-async.git</url>
116-
<connection>scm:git:git@github.com:seratch/scalikejdbc-async.git</connection>
115+
<url>git@github.com:scalikejdbc/scalikejdbc-async.git</url>
116+
<connection>scm:git:git@github.com:scalikejdbc/scalikejdbc-async.git</connection>
117117
</scm>
118118
<developers>
119119
<developer>

0 commit comments

Comments
 (0)