From aaf5612aed91c77e020647ee12102d4a04164518 Mon Sep 17 00:00:00 2001 From: Alberto Ricart Date: Fri, 3 May 2024 09:06:33 -0500 Subject: [PATCH] [BUMP] deno to 1.43.1 and client version --- .github/workflows/test.yml | 2 +- Makefile | 2 +- src/deno_transport.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d02d8006..85e573e3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: environment: CI strategy: matrix: - deno-version: [1.42.1] + deno-version: [1.43.1] steps: - name: Git Checkout Deno Module diff --git a/Makefile b/Makefile index 85438fe1..dd1a6b97 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ build: test lint: - deno lint --ignore=docs/ + deno lint --ignore=docs/,debug/ test: clean deno test --allow-all --parallel --reload --quiet --coverage=coverage tests/ jetstream/tests diff --git a/src/deno_transport.ts b/src/deno_transport.ts index 560b9494..9a89fbac 100644 --- a/src/deno_transport.ts +++ b/src/deno_transport.ts @@ -34,7 +34,7 @@ import { Transport, } from "../nats-base-client/internal_mod.ts"; -const VERSION = "1.21.0"; +const VERSION = "1.24.0"; const LANG = "nats.deno"; const ReadBufferSize = 1024 * 256;