Skip to content

Commit

Permalink
Package.json and client version changes for release 1.1.4 (vertica#150)
Browse files Browse the repository at this point in the history
* Package.json and client version changes for release 1.1.4

* Fixup, v-protocol package version
  • Loading branch information
DMickens authored Jul 19, 2024
1 parent 0fdf742 commit 12a737a
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
"singleQuote": true
},
"dependencies": {
"vertica-nodejs": "^1.1.3"
"vertica-nodejs": "^1.1.4"
}
}
2 changes: 1 addition & 1 deletion packages/v-connection-string/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "v-connection-string",
"version": "1.1.0",
"version": "1.1.1",
"description": "Functions for dealing with a Vertica connection string",
"main": "./index.js",
"types": "./index.d.ts",
Expand Down
4 changes: 2 additions & 2 deletions packages/v-pool/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "v-pool",
"version": "1.1.3",
"version": "1.1.4",
"description": "Connection pool for Vertica",
"main": "index.js",
"directories": {
Expand Down Expand Up @@ -35,6 +35,6 @@
"mocha": "^7.1.2"
},
"peerDependencies": {
"vertica-nodejs": "1.1.3"
"vertica-nodejs": "1.1.4"
}
}
2 changes: 1 addition & 1 deletion packages/v-protocol/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "v-protocol",
"version": "1.1.0",
"version": "1.1.1",
"description": "The Vertica client/server binary protocol, implemented in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/vertica-nodejs/lib/connection-parameters.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ class ConnectionParameters {

// client auditing information
this.client_type = "Node.js Driver"
this.client_version = "1.1.3"
this.client_version = "1.1.4"

try {
this.client_os_hostname = os.hostname()
Expand Down
8 changes: 4 additions & 4 deletions packages/vertica-nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vertica-nodejs",
"version": "1.1.3",
"version": "1.1.4",
"description": "Vertica client - pure javascript & libpq with the same API",
"keywords": [
"database",
Expand Down Expand Up @@ -31,9 +31,9 @@
"packet-reader": "1.0.0",
"pg-types": "^2.1.0",
"pgpass": "1.x",
"v-connection-string": "1.1.0",
"v-pool": "1.1.3",
"v-protocol": "1.1.0"
"v-connection-string": "1.1.1",
"v-pool": "1.1.4",
"v-protocol": "1.1.1"
},
"devDependencies": {
"async": "0.9.0",
Expand Down

0 comments on commit 12a737a

Please sign in to comment.