8000 Updating docs to reference Scala 2.11 as well · odd/postgresql-async@245359c · GitHub
[go: up one dir, main page]

Skip to content

Commit 245359c

Browse files
committed
Updating docs to reference Scala 2.11 as well
1 parent a51cbf9 commit 245359c

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

README.markdown

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
2424

25-
# [![Build Status](https://travis-ci.org/mauricio/postgresql-async.png)](https://travis-ci.org/mauricio/postgresql-async) postgresql-async & mysql-async - async, Netty based, database drivers for MySQL and PostgreSQL written in Scala - 2.10
25+
# [![Build Status](https://travis-ci.org/mauricio/postgresql-async.png)](https://travis-ci.org/mauricio/postgresql-async) postgresql-async & mysql-async - async, Netty based, database drivers for MySQL and PostgreSQL written in Scala 2.10 and 2.11
2626

2727
The main goal for this project is to implement simple, async, performant and reliable database drivers for
2828
PostgreSQL and MySQL in Scala. This is not supposed to be a JDBC replacement, these drivers aim to cover the common
@@ -51,32 +51,32 @@ You can view the project's [CHANGELOG here](CHANGELOG.md).
5151
And if you're in a hurry, you can include them in your build like this, if you're using PostgreSQL:
5252

5353
```scala
54-
"com.github.mauricio" %% "postgresql-async" % "0.2.12"
54+
"com.github.mauricio" %% "postgresql-async" % "0.2.14"
5555
```
5656

5757
Or Maven:
5858

5959
```xml
6060
<dependency>
6161
<groupId>com.github.mauricio</groupId>
62-
<artifactId>postgresql-async_2.10</artifactId>
63-
<version>0.2.12</version>
62+
<artifactId>postgresql-async_2.11</artifactId>
63+
<version>0.2.14</version>
6464
</dependency>
6565
```
6666

6767
And if you're into MySQL:
6868

6969
```scala
70-
"com.github.mauricio" %% "mysql-async" % "0.2.12"
70+
"com.github.mauricio" %% "mysql-async" % "0.2.14"
7171
```
7272

7373
Or Maven:
7474

7575
```xml
7676
<dependency>
7777
<groupId>com.github.mauricio</groupId>
78-
<artifactId>mysql-async_2.10</artifactId>
79-
<version>0.2.12</version>
78+
<artifactId>mysql-async_2.11</artifactId>
79+
<version>0.2.14</version>
8080
</dependency>
8181
```
8282

mysql-async/README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
33
**Table of Contents**
44

5-
- [mysql-async - an async, Netty based, MySQL driver written in Scala 2.10](#mysql-async---an-async-netty-based-mysql-driver-written-in-scala-210)
5+
- [mysql-async - an async, Netty based, MySQL driver written in Scala 2.10 and 2.11](#mysql-async---an-async-netty-based-mysql-driver-written-in-scala-210)
66
- [What can it do now?](#what-can-it-do-now)
77
- [Gotchas](#gotchas)
88
- [Supported types](#supported-types)
99

1010
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
1111

12-
# mysql-async - an async, Netty based, MySQL driver written in Scala 2.10
12+
# mysql-async - an async, Netty based, MySQL driver written in Scala 2.10 and 2.11
1313

14-
This is the MySQL part of the async driver collection. As the PostgreSQL version, it is not supposed to be a JDBC
15-
replacement, but a simpler solution for those that need something that queries and then returns rows.
14+
This is the MySQL part of the async driver collection. As the PostgreSQL version, it is not supposed to be a JDBC replacement, but a simpler solution for those that need something that queries and then returns rows.
1615

1716
You can find more information about the MySQL network protocol [here](http://dev.mysql.com/doc/internals/en/client-server-protocol.html).
1817

postgresql-async/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
33
**Table of Contents**
44

5-
- [postgresql-async - an async Netty based PostgreSQL driver written in Scala 2.10](#postgresql-async---an-async-netty-based-postgresql-driver-written-in-scala-210)
5+
- [postgresql-async - an async Netty based PostgreSQL driver written in Scala 2.10 and 2.11](#postgresql-async---an-async-netty-based-postgresql-driver-written-in-scala-210)
66
- [What can it do now?](#what-can-it-do-now)
77
- [What is missing?](#what-is-missing)
88
- [Supported Scala/Java types and their destination types on PostgreSQL](#supported-scalajava-types-and-their-destination-types-on-postgresql)
99

1010
<!-- END doctoc generated TOC please keep comment here to allow auto update -->
1111

12-
# postgresql-async - an async Netty based PostgreSQL driver written in Scala 2.10
12+
# postgresql-async - an async Netty based PostgreSQL driver written in Scala 2.10 and 2.11
1313

1414
The main goal of this project is to implement a performant and fully functional async PostgreSQL driver. This project
1515
has no interest in JDBC, it's supposed to be a clean room implementation for people interested in talking directly

0 commit comments

Comments
 (0)
0