Skip to content

Commit dc7a3a3

Browse files
committed
chore: version
1 parent b73538d commit dc7a3a3

File tree

6 files changed

+25
-10
lines changed

6 files changed

+25
-10
lines changed

.changeset/wise-parents-share.md

-7
This file was deleted.

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# clarigen-deno
22

3+
## 0.4.15
4+
5+
### Patch Changes
6+
7+
- [`b73538d`](https://github.com/mechanismHQ/clarigen-deno/commit/b73538d985645987086f6ef8d91ca8c79b92df5c) Thanks [@hstove](https://github.com/hstove)! - The documentation generator has been updated to include maps and variables!
8+
9+
Previously, generated docs only included functions. Now, all maps and variables are included as well. Additionally, if you include comments directly above any maps, variables, and constants, those comments will be parsed and included in generated documentation.
10+
311
## 0.4.14
412

513
### Patch Changes

artifacts/clarigen/index.ts

+14
Original file line numberDiff line numberDiff line change
@@ -345,12 +345,26 @@ export const contracts = {
345345
},
346346
access: 'constant',
347347
} as TypedAbiVariable<Response<null, bigint>>,
348+
ERR_ZERO: {
349+
name: 'ERR_ZERO',
350+
type: {
351+
response: {
352+
ok: 'none',
353+
error: 'uint128',
354+
},
355+
},
356+
access: 'constant',
357+
} as TypedAbiVariable<Response<null, bigint>>,
348358
},
349359
constants: {
350360
ERR_UNAUTHORIZED: {
351361
isOk: false,
352362
value: 400n,
353363
},
364+
ERR_ZERO: {
365+
isOk: false,
366+
value: 0n,
367+
},
354368
},
355369
'non_fungible_tokens': [
356370
{

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clarigen-deno",
3-
"version": "0.4.14",
3+
"version": "0.4.15",
44
"main": "index.js",
55
"author": "''",
66
"license": "MIT",

src/cli/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const VERSION = 'v0.4.14';
1+
export const VERSION = 'v0.4.15';

tests/helper.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// This file is automatically generated by Clarigen.
33
// Don't make changes to this file, or they'll
44
// be overwritten.
5-
import { factory } from "https://deno.land/x/clarigen@v0.4.14/mod.ts";
5+
import { factory } from "https://deno.land/x/clarigen@v0.4.15/mod.ts";
66
import { simnet } from "./../artifacts/clarigen/index.ts";
77

88
export const { test, contracts, accounts } = factory(simnet);

0 commit comments

Comments
 (0)