@adhese/sdk-react 0.9.14 → 1.0.0
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.
- package/CHANGELOG.md +17 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @adhese/sdk-react
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- ff93b63: 🎉🎉🎉 – Release 1.0.0 – 🎉🎉🎉
|
|
8
|
+
|
|
9
|
+
This release marks the first stable release of the Adhese SDK packages. From here on out we will follow semantic
|
|
10
|
+
versioning, meaning that all patch and minor updates will be backwards compatible. Major updates will introduce
|
|
11
|
+
breaking changes.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [ff93b63]
|
|
16
|
+
- Updated dependencies [21aad18]
|
|
17
|
+
- @adhese/sdk@1.0.0
|
|
18
|
+
- @adhese/sdk-shared@1.0.0
|
|
19
|
+
|
|
3
20
|
## 0.9.14
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adhese/sdk-react",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"description": "Adhese SDK",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"prepareRelease": "npm run build"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
|
-
"@adhese/sdk": ">=
|
|
28
|
+
"@adhese/sdk": ">=1.0.0",
|
|
29
29
|
"react": ">=16.13",
|
|
30
30
|
"react-dom": ">=16.13"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@adhese/sdk-shared": "^0.
|
|
33
|
+
"@adhese/sdk-shared": "^1.0.0",
|
|
34
34
|
"use-deep-compare-effect": "^1.8.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|