Skip to content

Commit

Permalink
chore: Bump version to 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
simonknittel committed Jun 8, 2024
1 parent 496ea3e commit 108f8c4
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "create-task",
"name": "Create Task",
"version": "1.4.1",
"version": "1.4.2",
"minAppVersion": "1.4.16",
"description": "Create tasks faster from anywhere.",
"author": "Simon Knittel",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-create-task",
"version": "1.4.1",
"version": "1.4.2",
"description": "Create tasks faster from anywhere.",
"main": "main.js",
"scripts": {
Expand Down
16 changes: 16 additions & 0 deletions src/ChangelogModal/ReactApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,22 @@ export const ReactApp = ({ plugin, changelogModal, lastChangelog }: Props) => {
<Heading />

<section>
<article
className={clsx("create-task__changelog-modal-release", {
"create-task__changelog-modal-release--new":
lastChangelog && gt("1.4.2", lastChangelog),
})}
>
<h2>1.4.2</h2>

<ul>
<li>
This release only upgrades dependencies. There are not changes
for users of this plugin.
</li>
</ul>
</article>

<article
className={clsx("create-task__changelog-modal-release", {
"create-task__changelog-modal-release--new":
Expand Down

0 comments on commit 108f8c4

Please sign in to comment.