@arcadiasystems/morse-sdk 0.1.0 → 0.1.1

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/CHANGELOG.md +9 -1
  2. package/package.json +6 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to `morse-sdk` will be documented in this file. Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and the project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
4
 
5
+ ## [0.1.1] - 2026-05-17
6
+
7
+ Metadata-only patch. No code, behavior, or API surface change.
8
+
9
+ - Fixed `package.json` `repository.url` to point at the canonical Arcadia Systems org repository (`github.com/arcadiasystems/morse-dcms`) instead of the personal fork that was published on 0.1.0.
10
+ - Added `homepage` (links to the SDK subdirectory README) and `bugs` fields so the npm page links resolve correctly.
11
+
5
12
  ## [0.1.0] - 2026-05-10
6
13
 
7
14
  Initial public release. Testnet only; mainnet support is gated on contract freeze and arrives with v1.0.0.
@@ -32,4 +39,5 @@ See `README.md` for the full list. Headlines:
32
39
  - Wallet schemes other than Ed25519 ship as decoders with E2E unverified; `WalletStandardSigner.fromAccount` will accept them, but `@mysten/walrus` and `@mysten/seal` round-trip is not yet smoke-tested for those configurations.
33
40
  - gRPC client only at v0.1.0; the reader and adapter interfaces are typed against `Pick<SuiGrpcClient, ...>`. JSON-RPC fallback is planned for v0.2.0.
34
41
 
35
- [0.1.0]: https://github.com/TheDivic/morse-dcms/releases/tag/v0.1.0
42
+ [0.1.1]: https://github.com/arcadiasystems/morse-dcms/releases/tag/v0.1.1
43
+ [0.1.0]: https://github.com/arcadiasystems/morse-dcms/releases/tag/v0.1.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arcadiasystems/morse-sdk",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "TypeScript SDK for Morse dCMS on the Sui blockchain.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -18,9 +18,13 @@
18
18
  ],
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "git+https://github.com/TheDivic/morse-dcms.git",
21
+ "url": "git+https://github.com/arcadiasystems/morse-dcms.git",
22
22
  "directory": "morse-sdk"
23
23
  },
24
+ "homepage": "https://github.com/arcadiasystems/morse-dcms/tree/main/morse-sdk#readme",
25
+ "bugs": {
26
+ "url": "https://github.com/arcadiasystems/morse-dcms/issues"
27
+ },
24
28
  "files": [
25
29
  "dist",
26
30
  "README.md",