Skip to content

Commit b59ff01

Browse files
authored
Update version to 2.29.2 (#648)
Bump package version from 2.29.1 to 2.29.2 across all files to align with the updated release. Adjust script to clone the correct version of `nats.deno`.
1 parent 2735283 commit b59ff01

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nats",
3-
"version": "2.29.1",
3+
"version": "2.29.2",
44
"description": "Node.js client for NATS, a lightweight, high-performance cloud native messaging system",
55
"keywords": [
66
"nats",
@@ -41,8 +41,8 @@
4141
"cjs-nbc": "deno run --allow-all ./bin/cjs-fix-imports.ts -o nats-base-client/ ./.deps/nats.deno/nats-base-client",
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",
44-
"clean": "shx rm -Rf ./lib/* ./nats-base-client ./.deps",
45-
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.29.1 https://github.com/nats-io/nats.deno.git",
44+
"clean": "shx rm -Rf ./lib/* ./nats-base-client ./jetstream ./.deps",
45+
"clone-nbc": "shx mkdir -p ./.deps && cd ./.deps && git clone --branch v1.29.2 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

Lines changed: 1 addition & 1 deletion
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.29.1";
37+
const VERSION = "2.29.2";
3838
const LANG = "nats.js";
3939

4040
export class NodeTransport implements Transport {

0 commit comments

Comments
 (0)