Skip to content

Commit aa5b4c8

Browse files
authored
Bump bundle versions (#259)
Updated package versions, dependencies, and import mappings across multiple modules to ensure consistency with version 3.0.2. Improved repository URL formatting in package metadata. Corrected a logic error in bundle_versions.ts test script for qualifier comparison. [ci skip] Signed-off-by: Alberto Ricart <[email protected]>
1 parent 8dc31a7 commit aa5b4c8

File tree

20 files changed

+51
-51
lines changed

20 files changed

+51
-51
lines changed

bin/lib/bundle_versions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class SemVer {
7070
if (this.micro > b.micro) return 1;
7171

7272
if (this.qualifier === "" && b.qualifier !== "") return 1;
73-
if (b.qualifier === "" && b.qualifier !== "") return -1;
73+
if (b.qualifier === "" && this.qualifier !== "") return -1;
7474

7575
// if we have non-empty qualifiers - we expect them to
7676
const q = parseInt(this.qualifier);

core/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-core",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"

core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/nats-core",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/nats-io/nats.js"
17+
"url": "git+https://github.com/nats-io/nats.js.git"
1818
},
1919
"private": false,
2020
"scripts": {

core/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is generated - do not edit
2-
export const version = "3.0.2-1";
2+
export const version = "3.0.2";

jetstream/deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/jetstream",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,6 +33,6 @@
3333
"test": "deno test -A --parallel --reload --trace-leaks --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/[email protected]-1"
36+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]"
3737
}
3838
}

jetstream/import_map.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"imports": {
33
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
44
"@nats-io/nuid": "jsr:@nats-io/[email protected]",
5-
"@nats-io/nats-core": "jsr:@nats-io/[email protected]-1",
6-
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]-1/internal",
5+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
6+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]/internal",
77
"test_helpers": "../test_helpers/mod.ts",
88
"@std/io": "jsr:@std/[email protected]"
99
}

jetstream/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/jetstream",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/nats-io/nats.js"
17+
"url": "git+https://github.com/nats-io/nats.js.git"
1818
},
1919
"private": false,
2020
"scripts": {
@@ -33,7 +33,7 @@
3333
},
3434
"description": "jetstream library - this library implements all the base functionality for NATS JetStream for javascript clients",
3535
"dependencies": {
36-
"@nats-io/nats-core": "3.0.2-1"
36+
"@nats-io/nats-core": "3.0.2"
3737
},
3838
"devDependencies": {
3939
"@types/node": "^22.13.10",

kv/deno.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/kv",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"exports": {
55
".": "./src/mod.ts",
66
"./internal": "./src/internal_mod.ts"
@@ -33,7 +33,7 @@
3333
"test": "deno test -A --parallel --reload --quiet tests/ --import-map=import_map.json"
3434
},
3535
"imports": {
36-
"@nats-io/nats-core": "jsr:@nats-io/[email protected]-1",
37-
"@nats-io/jetstream": "jsr:@nats-io/[email protected]-1"
36+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
37+
"@nats-io/jetstream": "jsr:@nats-io/[email protected]"
3838
}
3939
}

kv/import_map.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"imports": {
3-
"@nats-io/nats-core": "jsr:@nats-io/[email protected]-1",
4-
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]-1/internal",
5-
"@nats-io/jetstream": "jsr:@nats-io/[email protected]-1",
6-
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]-1/internal",
3+
"@nats-io/nats-core": "jsr:@nats-io/[email protected]",
4+
"@nats-io/nats-core/internal": "jsr:@nats-io/[email protected]/internal",
5+
"@nats-io/jetstream": "jsr:@nats-io/[email protected]",
6+
"@nats-io/jetstream/internal": "jsr:@nats-io/[email protected]/internal",
77
"test_helpers": "../test_helpers/mod.ts",
88
"@nats-io/nkeys": "jsr:@nats-io/[email protected]",
99
"@nats-io/nuid": "jsr:@nats-io/[email protected]",

kv/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nats-io/kv",
3-
"version": "3.0.2-1",
3+
"version": "3.0.2",
44
"files": [
55
"lib/",
66
"LICENSE",
@@ -14,7 +14,7 @@
1414
"license": "Apache-2.0",
1515
"repository": {
1616
"type": "git",
17-
"url": "https://github.com/nats-io/nats.js"
17+
"url": "git+https://github.com/nats-io/nats.js.git"
1818
},
1919
"private": false,
2020
"scripts": {
@@ -33,8 +33,8 @@
3333
},
3434
"description": "kv library - this library implements all the base functionality for NATS KV javascript clients",
3535
"dependencies": {
36-
"@nats-io/jetstream": "3.0.2-1",
37-
"@nats-io/nats-core": "3.0.2-1"
36+
"@nats-io/jetstream": "3.0.2",
37+
"@nats-io/nats-core": "3.0.2"
3838
},
3939
"devDependencies": {
4040
"@types/node": "^22.10.10",

0 commit comments

Comments
 (0)