Skip to content

Commit

Permalink
πŸ”– release 0.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ebullient committed Jan 22, 2022
1 parent 3c2e1e4 commit 143f632
Show file tree
Hide file tree
Showing 6 changed files with 242 additions and 107 deletions.
37 changes: 37 additions & 0 deletions .github/changelog.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{{#each releases}}
{{#if href}}
###{{#unless major}}#{{/unless}} [{{title}}]({{href}})
{{else}}
#### {{title}}
{{/if}}

{{#if tag}}
> {{niceDate}}
{{/if}}

{{#if summary}}
{{summary}}
{{/if}}

{{#if fixes}}
Fixes:
{{#each fixes}}
- {{#if commit.breaking}}**Breaking change:** {{/if}}{{commit.subject}} {{#each fixes}}#{{id}} {{/each}}
{{/each}}
{{/if}}

{{#if commits}}
Commits:
{{#each commits}}
- {{#if breaking}}**Breaking change:** {{/if}}{{subject}}{{#if href}} [`{{shorthash}}`]({{href}}){{/if}}
{{/each}}
{{/if}}

{{#if merges}}
PRs:
{{#each merges}}
- #{{id}} {{#if commit.breaking}}**Breaking change:** {{/if}}{{message}}
{{/each}}
{{/if}}

{{/each}}
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
VERSION: ${{ github.ref_name }}
run: |
echo "Release ${VERSION}"
npm install
npm run release-notes -- ${VERSION}
echo "::set-output name=version::${VERSION}"
Expand All @@ -41,7 +42,7 @@ jobs:
body_path: ./release-notes.md
draft: false
prerelease: false

# Upload the main.js
- name: Upload obsidian.css
id: upload-main
Expand All @@ -53,7 +54,7 @@ jobs:
asset_path: ./obsidian.css
asset_name: obsidian.css
asset_content_type: text/css

# Upload the tasks-snippet.css
- name: Upload tasks-snippet.css
id: upload-manifest
Expand Down
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,31 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [0.3.4](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.3.3...0.3.4)

- 🎨 Align checkbox snippet / lists with snippetor [`3c2e1e4`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/3c2e1e49d7b2c9feee6eb560ec02b1efe6e167ae)
- Update release.yml [`99771d6`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/99771d62914777e7a406f2cb89be654549c057f4)

#### [0.3.3](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.3.2...0.3.3)

> 19 January 2022
- πŸ‘· Set up gulp [`8c5566c`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/8c5566c38576e50147f35ea71527fced16e4f078)
- πŸ› Set background for hr in embed-content [`2814642`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/2814642d251add4785df27f228b11c34375dc8c8)

#### [0.3.2](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.3.0...0.3.2)
#### [0.3.2](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.3.1...0.3.2)

> 19 January 2022
- πŸ› Move list padding out of snippet [`d9fb86e`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/d9fb86ee597882e39706159db6c867432a0ac777)
- 🎨 Clear background from minimal in tasks snippet [`7c1e2b5`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/7c1e2b53870d7b02c2bdd7b4f379a8f3cc220398)
- 🎨 Use primary-alt for inline embeds [`0c9f7cb`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/0c9f7cb46b95e7da0cab19e0178cd20c0d1af886)

#### [0.3.1](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.3.0...0.3.1)

> 15 January 2022
- 🎨 Clear background from minimal in tasks snippet [`7c1e2b5`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/7c1e2b53870d7b02c2bdd7b4f379a8f3cc220398)

#### [0.3.0](https://github.com/ebullient/obsidian-theme-ebullientworks/compare/0.2.9...0.3.0)

> 14 January 2022
Expand All @@ -36,7 +48,6 @@ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
> 6 January 2022
- 🎨 Hide collapse indicators unless hovered|active [`1b287ba`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/1b287badcc21613c715ab996a2398ed7df7ee93b)
- πŸ”¨ Create CONTRIBUTING.md [`4899326`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/4899326c3c66920b94a8129a7a1dddaf364ca432)
- πŸ› Fix collapsed link in CM6 source mode [`03c78fd`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/03c78fde26bcdf8c2954a8ce38527d111e2fe993)
- 🎨 Use primary background for dark mode modal [`4e4af9b`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/4e4af9b4581c4c5717d64ead22490507a9c27fb5)
- πŸ› Fix bold italics in plain blockquotes [`4e0d642`](https://github.com/ebullient/obsidian-theme-ebullientworks/commit/4e0d64252e37e4b90d7d7c597927e107bc07bf20)
Expand Down
Loading

0 comments on commit 143f632

Please sign in to comment.