Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update: 2.0.5 ui enhancement #95

Merged
merged 6 commits into from
Dec 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"rules": {
"react/jsx-uses-react": "error",
"react/jsx-uses-vars": "error",
"react/react-in-jsx-scope": "error"
"react/react-in-jsx-scope": "error",
"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/naming-convention": "off"
},
"parserOptions": {
"project": "tsconfig.eslint.json"
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/1.bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ body:
render: bash
placeholder: |
BDK:
Version: 2.0.4
Version: x.x.x
Operating System:
Platform: macOS
Arch: arm64
Version: Darwin Kernel Version 22.5.0
Binaries:
Node: 16.13.2
Node: 18.18.2
npm: 9.5.1
Docker:
client: 24.0.5
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.13
18.18
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
這份文件將記錄 BDK 專案的變更日誌

All notable changes to BDK project will be documented here.
## [v2.0.5](https://github.com/cathayddt/bdk/releases/tag/v2.0.5) - 2023-12-05

### Features

* Lazy loading in command change [#92](https://github.com/cathayddt/bdk/issues/92)
* Bdk ui redesign [#89](https://github.com/cathayddt/bdk/issues/89)

### Fixes

* Update docker logs component [#93](https://github.com/cathayddt/bdk/issues/93)
* Ui selectInput delay [#91](https://github.com/cathayddt/bdk/issues/91)

## [2.0.4](https://github.com/cathayddt/bdk/releases/tag/2.0.4) - 2023-09-27

### Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ bdk fabric network create -i

| Latest | Stable |
| ---------------- | ---------------- |
| [v2.0.4][v2.0.4] | [v2.0.4][v2.0.4] |
| [v2.0.5][v2.0.5] | [v2.0.5][v2.0.5] |

[v2.0.4]: https://github.com/cathayddt/bdk/releases/tag/v2.0.4
[v2.0.5]: https://github.com/cathayddt/bdk/releases/tag/v2.0.5

[更新內容 (Changelog)](CHANGELOG.md)

Expand Down
2 changes: 1 addition & 1 deletion cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ commit_parsers = [
filter_commits = true
# glob pattern for matching git tags
# note SDK tags are purposely ignored, only submodules are included.
tag_pattern = "**/v[0-9]*"
tag_pattern = "v[0-9]*\\.[0-9]*\\.[0-9]*"
# regex for skipping tags
skip_tags = ""
# regex for ignoring tags
Expand Down
Loading