@nats-io/obj 3.0.0-RC1 → 3.0.0-RC2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -1
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -87,7 +87,6 @@ const objm = new Objm(js);
87
87
  ```
88
88
 
89
89
  ```typescript
90
- const sc = StringCodec();
91
90
  // create the named ObjectStore or bind to it if it exists:
92
91
  const objm = new Objm(nc);
93
92
  const os = await objm.create("testing", { storage: StorageType.File });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nats-io/obj",
3
- "version": "3.0.0-RC1",
3
+ "version": "3.0.0-RC2",
4
4
  "files": [
5
5
  "lib/",
6
6
  "LICENSE",
@@ -33,8 +33,8 @@
33
33
  },
34
34
  "description": "obj library - this library implements all the base functionality for NATS objectstore for javascript clients",
35
35
  "dependencies": {
36
- "@nats-io/jetstream": "3.0.0-RC1",
37
- "@nats-io/nats-core": "3.0.0-RC1",
36
+ "@nats-io/jetstream": "3.0.0-RC2",
37
+ "@nats-io/nats-core": "3.0.0-RC2",
38
38
  "js-sha256": "^0.11.0"
39
39
  },
40
40
  "devDependencies": {