Skip to content

Commit

Permalink
chore: release 2.11.0 (#1597)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugocaillard authored Oct 28, 2024
1 parent fdf38f2 commit ed98027
Show file tree
Hide file tree
Showing 15 changed files with 620 additions and 917 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# [2.11.0](https://github.com/hirosystems/clarinet/compare/v2.10.0...v2.11.0) (2024-11-28)

##### New Features

* Nakamoto settings as the defaults (#1590) (e7c6f1de)
* Session.eval_with_hooks (#1580) (acf290ed)

##### Bug Fixes

* Update SignerMessage codec (#1591) (9e090c58)


# [2.10.0](https://github.com/hirosystems/clarinet/compare/v2.9.0...v2.10.0) (2024-11-17)

##### New Features
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ members = [
default-members = ["components/clarinet-cli"]

[workspace.package]
version = "2.10.0"
version = "2.11.0"

[workspace.dependencies]
clarity = { git = "https://github.com/stacks-network/stacks-core.git", branch="feat/clarity-wasm-develop", package = "clarity", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions components/clarinet-sdk/browser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hirosystems/clarinet-sdk-browser",
"version": "2.10.0",
"version": "2.11.0",
"description": "A SDK to interact with Clarity Smart Contracts in the browser",
"homepage": "https://www.hiro.so/clarinet",
"repository": {
Expand Down Expand Up @@ -28,7 +28,7 @@
"license": "GPL-3.0",
"readme": "./README.md",
"dependencies": {
"@hirosystems/clarinet-sdk-wasm-browser": "^2.10.0",
"@hirosystems/clarinet-sdk-wasm-browser": "^2.11.0",
"@stacks/transactions": "^6.13.0"
}
}
6 changes: 3 additions & 3 deletions components/clarinet-sdk/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hirosystems/clarinet-sdk",
"version": "2.10.0",
"version": "2.11.0",
"description": "A SDK to interact with Clarity Smart Contracts in node.js",
"homepage": "https://www.hiro.so/clarinet",
"repository": {
Expand Down Expand Up @@ -61,11 +61,11 @@
"license": "GPL-3.0",
"readme": "./README.md",
"dependencies": {
"@hirosystems/clarinet-sdk-wasm": "^2.10.0",
"@hirosystems/clarinet-sdk-wasm": "^2.11.0",
"@stacks/transactions": "^6.13.0",
"kolorist": "^1.8.0",
"prompts": "^2.4.2",
"vitest": "^1.0.4",
"vitest": "^1.6.0",
"yargs": "^17.7.2"
},
"devDependencies": {
Expand Down
7 changes: 0 additions & 7 deletions components/clarity-vscode/.eslintignore

This file was deleted.

27 changes: 0 additions & 27 deletions components/clarity-vscode/.eslintrc.js

This file was deleted.

4 changes: 2 additions & 2 deletions components/clarity-vscode/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@
"vscode": "^1.52.0"
},
"devDependencies": {
"@types/vscode": "^1.68.0"
"@types/vscode": "^1.94.0"
},
"dependencies": {
"@vscode/test-web": "0.0.61",
"@vscode/test-web": "0.0.63",
"vscode-languageclient": "^9.0.1"
}
}
1 change: 1 addition & 0 deletions components/clarity-vscode/client/src/customVFS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export function initVFS(client: LanguageClient) {
}
}),
);
var a = 1;
return Object.fromEntries(files.filter(([, content]) => content !== null));
});

Expand Down
49 changes: 49 additions & 0 deletions components/clarity-vscode/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
import typescriptEslint from "@typescript-eslint/eslint-plugin";
import tsParser from "@typescript-eslint/parser";
import path from "node:path";
import { fileURLToPath } from "node:url";
import js from "@eslint/js";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
});

export default [
...compat.extends("eslint:recommended", "plugin:@typescript-eslint/recommended").map(config => ({
...config,
files: ["**/*.ts", "**/*.tsx"],
})),
{
files: ["**/*.ts", "**/*.tsx"],

plugins: {
"@typescript-eslint": typescriptEslint,
},

languageOptions: {
parser: tsParser,
},

rules: {
semi: [2, "always"],
"comma-dangle": [2, "always-multiline"],
"@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-non-null-assertion": 0,

"@typescript-eslint/naming-convention": ["error", {
selector: "memberLike",
modifiers: ["private"],
format: ["camelCase"],
leadingUnderscore: "require",
}],
},
},
];
Loading

0 comments on commit ed98027

Please sign in to comment.