From d44495de574249d83bc43d73eca098126e34886b Mon Sep 17 00:00:00 2001 From: Jason Ozias Date: Sat, 21 May 2016 14:17:54 -0400 Subject: [PATCH] preparation for release --- README.md | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 1a5ff1c..01ceb84 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,16 @@ JDBC API Wrapper for node.js ## Latest Version -- **0.3.0** - Before upgrading, read the [Major API Refactor](#major-api-refactor) +- **0.3.1** - Before upgrading, read the [Major API Refactor](#major-api-refactor) ## Installation - Release: ```npm i --save jdbc``` -- Development: ```npm i --save jdbc@next``` (this will install code from the master branch). +- Development: ```npm i --save jdbc@next``` (this will install code from the 0.3.1 branch). Please visit [node-jdbc](https://www.npmjs.org/package/jdbc) for information on installing with npm. ## Status -[![Build Status](https://travis-ci.org/CraZySacX/node-jdbc.svg?branch=master)](https://travis-ci.org/CraZySacX/node-jdbc) +[![Build Status](https://travis-ci.org/CraZySacX/node-jdbc.svg?branch=0.3.1)](https://travis-ci.org/CraZySacX/node-jdbc) ## Supported Java Versions - 1.7 @@ -26,7 +26,7 @@ compile it with such. All the tests work out of the box on a 1.8 JVM, but I've and classpath setup have to happen before the first java call. I've created a small wrapper (jinst.js) to help out with this. See below for example usage. I usually add this to every file that may be an entry point. The -[unit tests](https://github.com/CraZySacX/node-jdbc/tree/master/test) +[unit tests](https://github.com/CraZySacX/node-jdbc/tree/0.3.1/test) are setup like this due to the fact that order can't be guaranteed.

```javascript @@ -187,7 +187,7 @@ module.exports = { - **Fully Wrapped Connection API**

The Java Connection API has almost been completely wrapped. See -[connection.js](https://github.com/CraZySacX/node-jdbc/blob/master/lib/connection.js) +[connection.js](https://github.com/CraZySacX/node-jdbc/blob/0.3.1/lib/connection.js) for a full list of functions.

```javascript diff --git a/package.json b/package.json index 4745d6f..fe98529 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jdbc", - "version": "0.3.1-pre.2", + "version": "0.3.1", "description": "Node Module JDBC wrapper", "main": "index.js", "dependencies": {