From a6f4d646cf9bbdd18c5e19dfb02740926e446ccf Mon Sep 17 00:00:00 2001 From: Jason Ozias Date: Sun, 17 Apr 2016 09:27:00 -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 c605030..80a02b4 100644 --- a/README.md +++ b/README.md @@ -2,18 +2,18 @@ JDBC API Wrapper for node.js ## Latest Version -- **0.2.2** - Before upgrading, read the [Major API Refactor](#major-api-refactor) +- **0.3.0** - Before upgrading, read the [Major API Refactor](#major-api-refactor) section. This is NOT backwards compatible with the old API. - 0.0.15 - Old API. ## 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.0 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.0)](https://travis-ci.org/CraZySacX/node-jdbc) ## Dependencies - [async](https://github.com/caolan/async) @@ -34,7 +34,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.0/test) are setup like this due to the fact that order can't be guaranteed.

```javascript @@ -195,7 +195,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.0/lib/connection.js) for a full list of functions.

```javascript diff --git a/package.json b/package.json index c4935bf..0af3812 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jdbc", - "version": "0.2.3-pre.8", + "version": "0.3.0", "description": "Node Module JDBC wrapper", "main": "index.js", "dependencies": {