Skip to content

Commit f53e2aa

Browse files
authored
[BUMP] nbc to v1.23.0, client version (#618)
1 parent 6c28dd4 commit f53e2aa

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nats",
3-
"version": "2.22.0",
3+
"version": "2.23.0",
44
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
55
"keywords": [
66
"nats",
@@ -42,7 +42,7 @@
4242
"cjs-jetstream": "deno run --allow-all ./bin/cjs-fix-imports.ts -o jetstream/ ./.deps/nats.deno/jetstream/",
4343
"cjs": "npm run cjs-nbc && npm run cjs-jetstream",
4444
"clean": "shx rm -Rf ./lib/* ./nats-base-client ./.deps",
45-
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.22.0 https://github.com/nats-io/nats.deno.git",
45+
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.23.0 https://github.com/nats-io/nats.deno.git",
4646
"fmt": "deno fmt ./src/ ./examples/ ./test/",
4747
"prepack": "npm run clone-nbc && npm run cjs && npm run check-package && npm run build",
4848
"ava": "nyc ava --verbose -T 60000",

src/node_transport.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const { resolve } = require("path");
3434
const { readFile, existsSync } = require("fs");
3535
const dns = require("dns");
3636

37-
const VERSION = "2.22.0";
37+
const VERSION = "2.23.0";
3838
const LANG = "nats.js";
3939

4040
export class NodeTransport implements Transport {

0 commit comments

Comments
 (0)