Skip to content

Commit

Permalink
Release notes for 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
julianhyde committed May 31, 2018
1 parent c619d36 commit 705aee5
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 10 deletions.
22 changes: 22 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,28 @@

For a full list of releases, see <a href="https://github.com/julianhyde/sqlline/releases">github</a>.

## <a href="https://github.com/julianhyde/sqlline/releases/tag/sqlline-1.4.0">1.4.0</a> (2018-05-31)

Bugs and functional changes:

* [<a href="https://github.com/julianhyde/sqlline/issues/75">SQLLINE-75</a>]
jline gives `NumberFormatException` during startup
* Caused by [<a href="https://github.com/jline/jline2/issues/281">JLINE2-281</a>],
and fixed by upgrading jline to 2.14.4
* [<a href="https://github.com/julianhyde/sqlline/issues/72">SQLLINE-72</a>]
Allow quoted file names (including spaces) in `!record`, `!run` and `!script`
commands (Jason Prodonovich)

Other:

* [<a href="https://github.com/julianhyde/sqlline/issues/76">SQLLINE-76</a>]
During build, manual fails to validate against docbook DTD
* Travis CI: remove JDK 6 and 7 (no longer supported by Travis)
* Upgrade `maven-javadoc-plugin` to 3.0.0 due to
[<a href="https://issues.apache.org/jira/browse/MJAVADOC-485">MJAVADOC-485</a>]
* Add hyperlinks to previous test-cases (Julian Hyde)
* Add coursier usage example, and update contact info (Marc Prud'hommeaux)

## <a href="https://github.com/julianhyde/sqlline/releases/tag/sqlline-1.3.0">1.3.0</a> (2017-06-09)

Bugs and functional changes:
Expand Down
3 changes: 2 additions & 1 deletion HOWTO.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ Capitalization is tricky:

## How to make a release (for committers)

Make sure `mvn clean install` and `mvn site` pass under JDK 1.7, 1.8 and 9.
Make sure `mvn clean install` and `mvn site` pass under JDK 1.7, 8, 9,
and 10.

Write release notes. Run the
[relNotes](https://github.com/julianhyde/share/blob/master/tools/relNotes)
Expand Down
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SQLLine - Shell for issuing SQL to relational databases via JDBC

Copyright (c) 2002,2003,2004,2005,2006,2007 Marc Prud'hommeaux
Copyright (c) 2004-2010 The Eigenbase Project
Copyright (c) 2013-2017 Julian Hyde
Copyright (c) 2013-2018 Julian Hyde
All rights reserved.

===============================================================================
Expand Down
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SQLLine release 1.3.0
SQLLine release 1.4.0

This is a source or binary distribution of SQLLine.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ If you have [Coursier](https://github.com/coursier/coursier) installed, you
can quickly connect to a [demo Hypersonic database](https://github.com/julianhyde/foodmart-data-hsqldb) with:

```
$ coursier launch sqlline:sqlline:1.3.0 org.hsqldb:hsqldb:2.4.0 net.hydromatic:foodmart-data-hsqldb:0.4 -M sqlline.SqlLine -- -u jdbc:hsqldb:res:foodmart -n FOODMART -p FOODMART -d org.hsqldb.jdbcDriver
$ coursier launch sqlline:sqlline:1.4.0 org.hsqldb:hsqldb:2.4.1 net.hydromatic:foodmart-data-hsqldb:0.4 -M sqlline.SqlLine -- -u jdbc:hsqldb:res:foodmart -n FOODMART -p FOODMART -d org.hsqldb.jdbcDriver
0: jdbc:hsqldb:res:foodmart> select avg("shelf_height" * "shelf_width" * "shelf_depth") as "avg_volume" from "product";
+-------------------------+
| avg_volume |
Expand Down Expand Up @@ -90,7 +90,7 @@ Use the following definition to use `sqlline` in your maven project:
<dependency>
<groupId>sqlline</groupId>
<artifactId>sqlline</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>
</dependency>
```

Expand Down
10 changes: 5 additions & 5 deletions src/docbkx/manual.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[
<!-- "http://www.docbook.org/xml/4.2/docbookx.dtd" -->
<!-- "file:/sw/share/xml/dtd/docbookx/4.2.0/docbookx.dtd" -->
<!ENTITY VERSION "1.3">
<!ENTITY VERSION "1.4">
]>
<book>
<bookinfo>
Expand Down Expand Up @@ -70,7 +70,7 @@
<listitem><para>
<trademark>Java</trademark> Virtual Machine -
SQLLine is a pure
java program, and requires Java version 1.3 or higher
java program, and requires Java version 1.6 or higher
in order to run. The latest JVM can be downloaded from
<ulink url="http://java.sun.com"/>.
</para></listitem>
Expand Down Expand Up @@ -1321,7 +1321,7 @@ sqlline>
<para>
Set the isolation level for the current transaction. For
a description of the different isolation levels, see
<ulink url="http://java.sun.com/j2se/1.3/docs/api/java/sql/Connection.html#field_detail">http://java.sun.com/j2se/1.3/docs/api/java/sql/Connection.html#field_detail</ulink>.
<ulink url="https://docs.oracle.com/javase/9/docs/api/java/sql/Connection.html#field_detail">java.sql.Connection#field_detail</ulink>.
</para>
</refsect1>
<refsect1>
Expand Down Expand Up @@ -1413,7 +1413,7 @@ Transaction isolation: TRANSACTION_SERIALIZABLE

Use "" for a blank String, and null for a null parameter.
For information on available metadata methods, see
<ulink url="http://java.sun.com/j2se/1.3/docs/api/java/sql/DatabaseMetaData.html">http://java.sun.com/j2se/1.3/docs/api/java/sql/DatabaseMetaData.html</ulink>.
<ulink url="https://docs.oracle.com/javase/9/docs/api/java/sql/DatabaseMetaData.html">java.sql.DatabaseMetaData</ulink>.
</para>
</refsect1>
<refsect1>
Expand Down Expand Up @@ -2707,7 +2707,7 @@ java.sql.SQLException: ORA-00942: table or view does not exist
to <literal>default</literal> causes numeric
values to be fetched and rendered via ResultSet.getString.
Any other setting results in fetch via ResultSet.getObject
and rendering via <ulink url="http://java.sun.com/j2se/1.5.0/docs/api/java/text/DecimalFormat.html">
and rendering via <ulink url="https://docs.oracle.com/javase/9/docs/api/java/text/DecimalFormat.html">
java.text.DecimalFormat</ulink>. For example,
the setting "0.###E0" yields scientific notation
with up to three fractional digits.
Expand Down

0 comments on commit 705aee5

Please sign in to comment.