Skip to content

Commit

Permalink
🔖 Release 5.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
almond-bongbong committed Jul 25, 2024
1 parent 9c274ce commit 36a46d2
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
4 changes: 4 additions & 0 deletions example/src/page/change-log/change-log.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
margin-top: 10px;
}

.features a {
color: blue;
}

.features strong {
font-weight: 400;
color: #000;
Expand Down
21 changes: 21 additions & 0 deletions example/src/page/change-log/change-log.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,27 @@ function ChangeLog() {
</p>
</section>

<section className={styles.new}>
<h3>5.11.0</h3>
<div className={styles.date}>{dayjs().format('YYYY.MM.DD')}</div>
<h4 className={styles.sub_title}>🎉 New Features</h4>
<ul className={styles.features}>
<li>
<strong>Named Export:</strong> Added a named export <code>toast</code> to resolve type
issues with the default export.
<a href="https://github.com/almond-bongbong/react-simple-toasts/pull/92">#92</a>
</li>
</ul>
<h4 className={styles.sub_title}>🐛 Bug Fixes</h4>
<ul className={styles.features}>
<li>
<strong>Maintain Theme on Update:</strong> Fixed an issue where the theme was not being
maintained after updates.
<a href="https://github.com/almond-bongbong/react-simple-toasts/pull/95">#95</a>
</li>
</ul>
</section>

<section className={styles.new}>
<h3>5.10.0</h3>
<div className={styles.date}>{dayjs(1695454943400).format('YYYY.MM.DD')}</div>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-simple-toasts",
"version": "5.10.0",
"version": "5.10.1",
"description": "Instant, lightweight toast notifications for React. No providers or containers needed.",
"author": "almond-bongbong",
"homepage": "https://github.com/almond-bongbong/react-simple-toasts",
Expand Down Expand Up @@ -87,4 +87,4 @@
"react-toastify"
],
"packageManager": "[email protected]+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}
}

0 comments on commit 36a46d2

Please sign in to comment.