Skip to content

Commit b2f1027

Browse files
committed
chore: update repl dependency
1 parent 62262c5 commit b2f1027

File tree

5 files changed

+8
-14
lines changed

5 files changed

+8
-14
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "clarinet"
3-
version = "0.10.1"
3+
version = "0.12.0"
44
authors = ["Ludo Galabru <ludovic@galabru.com>"]
55
edition = "2018"
66
description = "Clarinet is a clarity runtime packaged as a command line tool, designed to facilitate smart contract understanding, development, testing and deployment."
@@ -15,12 +15,6 @@ categories = ["command-line-utilities", "development-tools", "development-tools:
1515
[workspace]
1616
members = [".", "xtask/"]
1717

18-
# [build-dependencies]
19-
# deno_core = { path = "./vendor/deno/core" }
20-
# deno_runtime = { path = "./vendor/deno/runtime" }
21-
# regex = "1.4.3"
22-
# serde = { version = "1.0.123", features = ["derive"] }
23-
2418
[target.'cfg(windows)'.build-dependencies]
2519
winapi = "0.3.9"
2620
winres = "0.1.11"
@@ -34,7 +28,7 @@ deno_core = { path = "./vendor/deno/core" }
3428
deno_runtime = { path = "./vendor/deno/runtime" }
3529
deno = { path = "./vendor/deno/cli" }
3630
# clarity_repl = { package = "clarity-repl", path = "../../clarity-repl", features = ["cli"] }
37-
clarity_repl = { package = "clarity-repl", version = "=0.12.1" }
31+
clarity_repl = { package = "clarity-repl", version = "=0.12.2" }
3832
bip39 = "1.0.0-rc1"
3933
aes = "0.6.0"
4034
base64 = "0.13.0"

examples/counter/scripts/abi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Clarinet, Contract, Account, StacksNode } from 'https://deno.land/x/clarinet@v0.11.0/index.ts';
1+
import { Clarinet, Contract, Account, StacksNode } from 'https://deno.land/x/clarinet@v0.12.0/index.ts';
22

33
Clarinet.run({
44
async fn(accounts: Map<string, Account>, contracts: Map<string, Contract>, node: StacksNode) {

examples/counter/tests/counter_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Clarinet, Tx, Chain, Account, Contract, types } from 'https://deno.land/x/clarinet@v0.11.1/index.ts';
1+
import { Clarinet, Tx, Chain, Account, Contract, types } from 'https://deno.land/x/clarinet@v0.12.0/index.ts';
22
import { assertEquals } from "https://deno.land/std@0.90.0/testing/asserts.ts";
33

44
Clarinet.test({

src/generators/contract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ impl GetChangesForNewContract {
6666
fn create_template_test(&mut self) {
6767
let content = format!(
6868
r#"
69-
import {{ Clarinet, Tx, Chain, Account, types }} from 'https://deno.land/x/clarinet@v0.11.0/index.ts';
69+
import {{ Clarinet, Tx, Chain, Account, types }} from 'https://deno.land/x/clarinet@v0.12.0/index.ts';
7070
import {{ assertEquals }} from 'https://deno.land/std@0.90.0/testing/asserts.ts';
7171
7272
Clarinet.test({{

0 commit comments

Comments
 (0)