Skip to content

Commit

Permalink
chore: merge release-v0.1.4 into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed May 11, 2023
2 parents 0fbb5fd + fc18976 commit 45fe1b6
Show file tree
Hide file tree
Showing 94 changed files with 941 additions and 1,506 deletions.
11 changes: 6 additions & 5 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,16 @@
"vscode": {
// Add the IDs of extensions you want installed when the container is created.
"extensions": [
"dbaeumer.vscode-eslint",
"mutantdino.resourcemonitor",
"meganrogge.template-string-converter",
"bungcip.better-toml",
"wix.vscode-import-cost",
"christian-kohler.path-intellisense",
"dbaeumer.vscode-eslint",
"meganrogge.template-string-converter",
"mutantdino.resourcemonitor",
"timonwong.shellcheck",
"vue.volar",
"vue.vscode-typescript-vue-plugin"
"vue.vscode-typescript-vue-plugin",
"wix.vscode-import-cost",
"yoavbls.pretty-ts-errors"
]
}
},
Expand Down
19 changes: 11 additions & 8 deletions .github/release-body.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
### 2023-03-13
### 2023-05-11

### Chores
+ dependencies updated, [18de9d1d6a0a6e453e3b7b692e94d48554cac313]

### Features
+ `show_tooltip()` based on platform & size, [9c07826eb6f2bb7ef5cb86ae0cee90d50dc33f9a], [f36f4d32c0b0429e305ed1c6a6757cbf380b8084]

### Reverts
+ temporary devcontainer buildkit fix removed, [da69297743a6604aed9f816d246b2a6f68b00d28]
+ devcontainer updated, [004326c0d4e6af7fb9d62e528f24f7327ae761ba]
+ dependencies updated, [4709949df9c6d1bd26c4c4feb78f3770db1cd4b8]

### Fixes
+ console.log() removed, [49c7ef03e1f8cdfed422147feab47c2a6eab714b]
+ typos, [edb4676b491fde2fa5a62cbcb81592ede150ad22]
+ defineProps with types, [9bee8add8e0d3b413bc4f9153968a236040743fe]
+ switchRow isComponent ternary, [b5c37ae63e02e469548e88c50e2fadf80174b0d0]
+ add spacing underneath tooltip, [0dd9a868eb3d708d85e05a5d71fd7c04b744547a]
+ pinia store re-export removed, [be05a6c3e9be4b790bcb736bb2da3a6e72e66bee]

see <a href='https://github.com/mrjackwills/staticpi_vue/blob/main/CHANGELOG.md'>CHANGELOG.md</a> for more details
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# <a href='https://github.com/mrjackwills/staticpi_vue/releases/tag/v0.1.4'>v0.1.4</a>
### 2023-05-11

### Chores
+ devcontainer updated, [004326c0](https://github.com/mrjackwills/staticpi_vue/commit/004326c0d4e6af7fb9d62e528f24f7327ae761ba)
+ dependencies updated, [4709949d](https://github.com/mrjackwills/staticpi_vue/commit/4709949df9c6d1bd26c4c4feb78f3770db1cd4b8)

### Fixes
+ console.log() removed, [49c7ef03](https://github.com/mrjackwills/staticpi_vue/commit/49c7ef03e1f8cdfed422147feab47c2a6eab714b)
+ typos, [edb4676b](https://github.com/mrjackwills/staticpi_vue/commit/edb4676b491fde2fa5a62cbcb81592ede150ad22)
+ defineProps with types, [9bee8add](https://github.com/mrjackwills/staticpi_vue/commit/9bee8add8e0d3b413bc4f9153968a236040743fe)
+ switchRow isComponent ternary, [b5c37ae6](https://github.com/mrjackwills/staticpi_vue/commit/b5c37ae63e02e469548e88c50e2fadf80174b0d0)
+ add spacing underneath tooltip, [0dd9a868](https://github.com/mrjackwills/staticpi_vue/commit/0dd9a868eb3d708d85e05a5d71fd7c04b744547a)
+ pinia store re-export removed, [be05a6c3](https://github.com/mrjackwills/staticpi_vue/commit/be05a6c3e9be4b790bcb736bb2da3a6e72e66bee)

# <a href='https://github.com/mrjackwills/staticpi_vue/releases/tag/v0.1.3'>v0.1.3</a>
### 2023-03-13

Expand Down
2 changes: 1 addition & 1 deletion create_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ update_release_body_and_changelog () {
# Add subheading with release version and date of release
echo -e "# <a href='${GIT_REPO_URL}/releases/tag/${NEW_TAG_WITH_V}'>${NEW_TAG_WITH_V}</a>\n${DATE_SUBHEADING}${CHANGELOG_ADDITION}$(cat CHANGELOG.md)" > CHANGELOG.md

# Update changelog to add links to commits [hex:8](url_with_full_commit)
# Update changelog to add links to commits [hex:8](url_with_full_commit)
# "[aaaaaaaaaabbbbbbbbbbccccccccccddddddddd]" -> "[aaaaaaaa](https:/www.../commit/aaaaaaaaaabbbbbbbbbbccccccccccddddddddd)"
sed -i -E "s=(\s)\[([0-9a-f]{8})([0-9a-f]{32})\]= [\2](${GIT_REPO_URL}/commit/\2\3)=g" CHANGELOG.md

Expand Down

0 comments on commit 45fe1b6

Please sign in to comment.