Skip to content

Commit

Permalink
preparation for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Ozias committed Apr 17, 2016
1 parent e9bd17c commit a6f4d64
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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.</p>

```javascript
Expand Down Expand Up @@ -195,7 +195,7 @@ module.exports = {

- **Fully Wrapped Connection API**
<p>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.</p>

```javascript
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down

0 comments on commit a6f4d64

Please sign in to comment.