Skip to content

Commit

Permalink
chore: version
Browse files Browse the repository at this point in the history
  • Loading branch information
hstove committed Nov 28, 2022
1 parent 588876f commit 30289b0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
5 changes: 0 additions & 5 deletions .changeset/wild-goats-tie.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# clarigen-deno

## 0.4.8

### Patch Changes

- [`588876f`](https://github.com/mechanismHQ/clarigen-deno/commit/588876f7862a78f4fbb88cd9046a81eaef54782d) Thanks [@hstove](https://github.com/hstove)! - Adds a `deno.helper` configuration option. If present, a helper file will be generated, which includes helpful and common imports for Clarinet testing environments.

## 0.4.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clarigen-deno",
"version": "0.4.7",
"version": "0.4.8",
"main": "index.js",
"author": "''",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const VERSION = 'v0.4.7';
export const VERSION = 'v0.4.8';
9 changes: 5 additions & 4 deletions tests/helper.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

export {
Chain,
err,
Expand All @@ -8,14 +9,14 @@ export {
txErr,
txOk,
// } from "../../deno-clarigen/src/index.ts";
} from 'https://deno.land/x/clarigen@v0.4.7/mod.ts';
import { factory } from 'https://deno.land/x/clarigen@v0.4.7/mod.ts';
import { simnet } from './../artifacts/clarigen/index.ts';
} from "https://deno.land/x/clarigen@v0.4.8/mod.ts";
import { factory } from "https://deno.land/x/clarigen@v0.4.8/mod.ts";
import { simnet } from "./../artifacts/clarigen/index.ts";

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

export const {
tester,
counter,
ftTrait,
counter
} = contracts;

0 comments on commit 30289b0

Please sign in to comment.