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

release v0.2.0 #117

Merged
merged 13 commits into from
Aug 22, 2024
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
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Resolves #<issue-url>

プルリクエストを作成いただく際、お手数ですが以下の内容についてご確認をお願いします。

- [ ] :book: [Contribution Guide](https://github.com/zenn-dev/zenn-vscode-extension/blob/main/CONTRIBUTING.md) を読んだ
- [ ] :book: [Contribution Guide](https://zenn-dev.github.io/zenn-docs-for-developers/contribution) を読んだ
- [ ] :woman_technologist: `canary` ブランチに対するプルリクエストである
- [ ] 実行して正しく動作しているか確認する
- [ ] 不要なコードが含まれていないか( コメントやログの消し忘れに注意 )
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
steps:
- uses: actions/checkout@v2

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 7
version: 9

- name: Use Node.js v18
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18

# vsce が pnpm に対応してないので npm でインストールする。
# lock ファイルを参照せずにインストールするので不安要素はあるが、
Expand All @@ -36,7 +36,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: canary へチェックアウト
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: canary

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: "16"
node-version: 18

- name: バージョン番号を環境変数に設定
run: node -p -e '`RELEASED_PACKAGE_VERSION=${require("./package.json").version}`' >> $GITHUB_ENV
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/update-release-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
github_token: ${{ secrets.GITHUB_TOKEN }}
message_regex: "リリースラベルを付与してください"

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: マージ先を取得
run: git fetch origin ${{ github.base_ref }} --depth=1
Expand All @@ -70,17 +70,17 @@ jobs:
needs: [version_diff]
if: needs.version_diff.outputs.chagned == '0'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18

- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v4
with:
version: 7
version: 9

- name: Gitの設定
if: steps.diff.outputs.changed == '0'
Expand Down
83 changes: 0 additions & 83 deletions CONTRIBUTING.md

This file was deleted.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"url": "https://github.com/zenn-dev/zenn-vscode-extension.git"
},
"license": "MIT",
"version": "0.1.4",
"version": "0.2.0",
"pricing": "Free",
"engines": {
"vscode": "^1.72.0"
Expand Down Expand Up @@ -252,9 +252,9 @@
"js-yaml": "^4.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"zenn-content-css": "^0.1.139",
"zenn-embed-elements": "^0.1.139",
"zenn-markdown-html": "^0.1.139",
"zenn-model": "^0.1.139"
"zenn-content-css": "^0.1.155",
"zenn-embed-elements": "^0.1.155",
"zenn-markdown-html": "^0.1.155",
"zenn-model": "^0.1.155"
}
}
Loading