@clarigen/test 0.2.0 → 0.2.3
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/package.json +4 -4
- package/CHANGELOG.md +0 -29
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.2.
|
|
2
|
+
"version": "0.2.3",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
@@ -23,12 +23,12 @@
|
|
|
23
23
|
"author": "Hank Stoever",
|
|
24
24
|
"module": "dist/test.esm.js",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@clarigen/core": "
|
|
27
|
-
"@clarigen/native-bin": "
|
|
26
|
+
"@clarigen/core": "0.2.3",
|
|
27
|
+
"@clarigen/native-bin": "0.2.3",
|
|
28
28
|
"@stacks/transactions": "^1.3.3"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "d5f5f508ece8cd70b88d23f4b27643c0ba990997"
|
|
34
34
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
# @clarigen/test
|
|
2
|
-
|
|
3
|
-
## 0.2.0
|
|
4
|
-
### Minor Changes
|
|
5
|
-
|
|
6
|
-
- fd1b36b: This version contains a number of big changes!
|
|
7
|
-
|
|
8
|
-
My favorite addition is the addition of a `@clarigen/native-bin` package. This removes the need to manually build and specify your local version of the `clarity-cli` binary. Most of this code was taken from the `@blockstack/clarity-native-bin` library. Users on Apple Silicon will also automatically download a pre-built binary (which was not previously available).
|
|
9
|
-
|
|
10
|
-
These changes should really improve DX for project setup, as well as the ability to run Clarigen in CI.
|
|
11
|
-
|
|
12
|
-
Other changes:
|
|
13
|
-
|
|
14
|
-
- **Breaking change** JS types for functions that return `uint` or `int` types now use the `BigInt` native JavaScript type.
|
|
15
|
-
- Although this is a breaking change, this is not a major update. Clarigen is still 0.x and is not in wide use.
|
|
16
|
-
- **Breaking change**: Projects that have a `clarinet` configuration now look for the `Devnet.toml` file (instead of `Development.toml`)
|
|
17
|
-
- Clarity type conversion (between hex and JS) has been consolidated into the `core` library
|
|
18
|
-
- Bug fixes for boolean type conversion for function parameters
|
|
19
|
-
- Added `get-stx-balance` test utility function
|
|
20
|
-
- Added util for getting boot contract identifiers
|
|
21
|
-
- `clarity-cli` is now launched in testnet mode by default
|
|
22
|
-
- Added changesets for better release management
|
|
23
|
-
- Added Github Actions CI to this package
|
|
24
|
-
|
|
25
|
-
### Patch Changes
|
|
26
|
-
|
|
27
|
-
- Updated dependencies [fd1b36b]
|
|
28
|
-
- @clarigen/core@0.2.0
|
|
29
|
-
- @clarigen/native-bin@0.2.0
|