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 v4.3.3 #253

Merged
merged 18 commits into from
Oct 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
aa45824
build(deps): bump micromatch from 4.0.7 to 4.0.8
dependabot[bot] Sep 12, 2024
9e10aa6
build(deps): bump actions/configure-pages from 4 to 5
dependabot[bot] Sep 29, 2024
798eeb9
build(deps): bump release-drafter/release-drafter from 5 to 6
dependabot[bot] Sep 29, 2024
8dcc1af
build(deps): bump peter-evans/create-pull-request from 4 to 7
dependabot[bot] Sep 29, 2024
d9d1998
build(deps): bump AButler/upload-release-assets from 2.0.2 to 3.0
dependabot[bot] Sep 29, 2024
249442e
Merge pull request #247 from sgratzl/dependabot/github_actions/dev/AB…
sgratzl Sep 29, 2024
05dc91b
Merge pull request #246 from sgratzl/dependabot/github_actions/dev/pe…
sgratzl Sep 29, 2024
ec8112c
Merge pull request #245 from sgratzl/dependabot/github_actions/dev/re…
sgratzl Sep 29, 2024
317ef2d
Merge pull request #244 from sgratzl/dependabot/github_actions/dev/ac…
sgratzl Sep 29, 2024
4df4bda
Merge pull request #242 from sgratzl/dependabot/npm_and_yarn/micromat…
sgratzl Sep 29, 2024
2c49901
build(deps-dev): bump typedoc-vitepress-theme from 1.0.1 to 1.0.2
dependabot[bot] Oct 1, 2024
216e1ad
build(deps-dev): bump typescript-eslint from 8.7.0 to 8.8.0
dependabot[bot] Oct 1, 2024
23cce94
build(deps-dev): bump rollup from 4.22.5 to 4.23.0
dependabot[bot] Oct 1, 2024
9a61972
Merge pull request #250 from sgratzl/dependabot/npm_and_yarn/dev/roll…
sgratzl Oct 2, 2024
1140dd9
Merge pull request #249 from sgratzl/dependabot/npm_and_yarn/dev/type…
sgratzl Oct 2, 2024
7738a53
Merge pull request #248 from sgratzl/dependabot/npm_and_yarn/dev/type…
sgratzl Oct 2, 2024
615ff9c
fix: remove reference to .pnp file
sgratzl Oct 20, 2024
b9fef66
chore: release v4.3.3
sgratzl Oct 20, 2024
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/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
echo "next_tag=$(npm version --no-git-tag-version ${{ github.event.inputs.versionName }} --preid ${{ github.event.inputs.preid }})" >> $GITHUB_OUTPUT
- name: Create pull request into main
uses: peter-evans/create-pull-request@v4
uses: peter-evans/create-pull-request@v7
with:
branch: release/${{ steps.version.outputs.next_tag }}
commit-message: 'chore: release ${{ steps.version.outputs.next_tag }}'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
${{ runner.os }}-yarn2-v5
- run: yarn install
- run: yarn docs:build
- uses: actions/configure-pages@v4
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_helper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
echo "releasing ${{ steps.extract_version.outputs.version }} with tag ${{ steps.extract_version.outputs.npm_tag }}"
- name: Create Release
id: create_release
uses: release-drafter/release-drafter@v5
uses: release-drafter/release-drafter@v6
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- run: yarn build
- run: yarn pack
- name: Upload Release Asset
uses: AButler/upload-release-assets@v2.0.2
uses: AButler/upload-release-assets@v3.0
with:
files: 'package.tgz'
repo-token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "chartjs-chart-geo",
"description": "Chart.js module for charting maps",
"version": "4.3.2",
"version": "4.3.3",
"author": {
"name": "Samuel Gratzl",
"email": "[email protected]",
Expand Down Expand Up @@ -38,8 +38,7 @@
"require": "./build/index.cjs",
"scripts": "./build/index.umd.min.js",
"types": "./build/index.d.ts"
},
"./.pnp.cjs": "./.pnp.cjs"
}
},
"sideEffects": false,
"files": [
Expand Down
Loading