Skip to content

Commit

Permalink
chore(release): v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LancelotLewis committed Mar 25, 2024
1 parent f4f169c commit d56fc97
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.3.0 (March 25, 2024)

- feat: add `no-use-before-define` rule

## 0.2.4 (June 06, 2023)

- chore: add lint in ci
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
"bumpp": "^9.1.1",
"zx": "^7.2.2"
},
"version": "0.2.4"
"version": "0.3.0"
}
2 changes: 1 addition & 1 deletion packages/eslint-config-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcblock/eslint-config-base",
"version": "0.2.4",
"version": "0.3.0",
"description": "Arcblock's ESLint config base",
"author": "zhanghan <[email protected]>",
"homepage": "https://github.com/ArcBlock/eslint-config#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-ts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcblock/eslint-config-ts",
"version": "0.2.4",
"version": "0.3.0",
"description": "Arcblock's base config for ESLint & Typescript",
"author": "wangshijun <[email protected]>",
"homepage": "https://github.com/ArcBlock/eslint-config#readme",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@arcblock/eslint-config",
"version": "0.2.4",
"version": "0.3.0",
"description": "Arcblock's ESLint config for react",
"author": "zhanghan <[email protected]>",
"homepage": "https://github.com/ArcBlock/eslint-config#readme",
Expand Down
2 changes: 1 addition & 1 deletion scripts/bump-version.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { execSync } from 'child_process';
import { $, chalk, fs } from 'zx';

// or use pnpm to bump version: `pnpm -r --filter {packages/*, themes/*} -- pnpm version`
execSync('bumpp package.json packages/*/package.json', {
execSync('bumpp package.json packages/*/package.json --no-push --no-tag --no-commit', {
stdio: 'inherit',
});

Expand Down

0 comments on commit d56fc97

Please sign in to comment.