You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-1
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,21 @@ This monorepo contains the NFDomains SDK for direct on-chain interaction with NF
7
7
This SDK is in early development (pre-1.0.0) and may introduce breaking changes despite our best efforts to avoid them. We recommend pinning the version in your package.json:
8
8
9
9
```json
10
-
"@txnlab/nfd-sdk": "0.1.2"// instead of "@txnlab/nfd-sdk": "^0.1.2"
10
+
{
11
+
"dependencies": {
12
+
"@txnlab/nfd-sdk": "0.1.2"
13
+
}
14
+
}
15
+
```
16
+
17
+
Instead of using caret versioning:
18
+
19
+
```json
20
+
{
21
+
"dependencies": {
22
+
"@txnlab/nfd-sdk": "^0.1.2"
23
+
}
24
+
}
11
25
```
12
26
13
27
Once we reach v1.0.0 with all planned features, breaking changes will only be introduced via major version bumps following semantic versioning.
0 commit comments