From b21a45f27046ccc6f1d6d0665109424b74b37b92 Mon Sep 17 00:00:00 2001 From: Mark Irish Date: Fri, 5 Apr 2019 14:37:47 -0500 Subject: [PATCH 1/2] Adding files to .gitignore and advertising the v2.0.0-beta.0 release --- .gitignore | 5 ++++- README.md | 12 ++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index e17ea04..24e554c 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,7 @@ a.out build node_modules deps -.idea \ No newline at end of file +.idea +core +.env +.vscode \ No newline at end of file diff --git a/README.md b/README.md index 7095b30..dda7e0d 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,15 @@ +# node-odbc 2.0.0 is now in beta! +A new version of `odbc` has been released in beta! The initial release of this beta can be found at [https://www.npmjs.com/package/odbc/v/2.0.0-beta.0](https://www.npmjs.com/package/odbc/v/2.0.0-beta.0), while later releases can be found under the Versions tab on npm. This URL contains information including the README file outlining the new API. + +To install the beta version, include the `beta` tag with your command: +``` +npm install odbc@beta +``` + +Test it out and give feedback on the issues of the official git repository! + +--- + node-odbc --------- From 6f30c05bb81744fa21e339b9d91f6681794757aa Mon Sep 17 00:00:00 2001 From: Mark Irish Date: Fri, 5 Apr 2019 14:43:15 -0500 Subject: [PATCH 2/2] Updating version number so that it can be npm published --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b001b25..98f8a0b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "odbc", "description": "unixodbc bindings for node", - "version": "1.4.5", + "version": "1.4.6", "main": "lib/odbc.js", "types": "./lib/odbc.d.ts", "homepage": "http://github.com/wankdanker/node-odbc/",