Skip to content

Commit 314f255

Browse files
committed
Release 1.0.17
1 parent 5870407 commit 314f255

2 files changed

Lines changed: 6 additions & 10 deletions

File tree

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,12 @@ The SQL Parser is in the standard Maven Central repository. Any Maven based
3535
project can use it directly by adding the appropriate entries to the
3636
`dependencies` section of its `pom.xml` file:
3737

38-
> Note:
39-
> This project was recently renamed from `akiban-sql-parser` and can be
40-
> found as such in Maven Central until the next release.
41-
4238
```xml
4339
<dependencies>
4440
<dependency>
45-
<groupId>com.akiban</groupId>
46-
<artifactId>akiban-sql-parser</artifactId>
47-
<version>1.0.16</version>
41+
<groupId>com.foundationdb</groupId>
42+
<artifactId>fdb-sql-parser</artifactId>
43+
<version>1.0.17</version>
4844
</dependency>
4945
</dependencies>
5046
```
@@ -92,13 +88,13 @@ parser in the `classpath`.
9288
Compile:
9389

9490
```sh
95-
$ javac -cp fdb-sql-parser-1.0.16.jar ParserHello.java
91+
$ javac -cp fdb-sql-parser-1.0.17.jar ParserHello.java
9692
```
9793

9894
Run (output trimmed):
9995

10096
```sh
101-
$ javac -cp fdb-sql-parser-1.0.16.jar:. ParserHello "SELECT a FROM b"
97+
$ javac -cp fdb-sql-parser-1.0.17.jar:. ParserHello "SELECT a FROM b"
10298
com.foundationdb.sql.parser.CursorNode@5889dee2
10399
statementType: SELECT
104100
resultSet:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>com.foundationdb</groupId>
1515
<artifactId>fdb-sql-parser</artifactId>
16-
<version>1.0.17-SNAPSHOT</version>
16+
<version>1.0.17</version>
1717
<packaging>jar</packaging>
1818

1919
<name>FoundationDB SQL Parser</name>

0 commit comments

Comments
 (0)