Skip to content

Commit 6945ee7

Browse files
committed
Prepare to release v2.1.0
1 parent 6eb0a1e commit 6945ee7

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

CHANGELOG.md

+9-3
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ This applies from version 0.5.0 onwards, as some versions before that have broke
1111

1212
## [Unreleased]
1313

14+
### Added
15+
### Changed
16+
### Fixed
17+
### Removed
18+
19+
## [2.1.0] - 2023-03-11
20+
1421
### Added
1522

1623
- Close menu for mobile when escape key is pressed.
@@ -26,8 +33,6 @@ This applies from version 0.5.0 onwards, as some versions before that have broke
2633

2734
- Fix bug in logic for writing back to HTML file. Dollar signs need to be escaped.
2835

29-
### Removed
30-
3136
## [2.0.0] - 2023-02-20
3237

3338
The main change in this release is that it introduces support for a _Markdown-based syntax_. Using that syntax, term definitions can now contain multiple paragraphs, bold/italic text, ordered/unordered lists, hyperlinks, images, code fragments, and more.
@@ -416,7 +421,8 @@ Make the [relevant changes](https://github.com/hilverd/glossary-page-template/co
416421

417422
- Initial release.
418423

419-
[Unreleased]: https://github.com/hilverd/glossary-page-template/compare/v2.0.0...HEAD
424+
[Unreleased]: https://github.com/hilverd/glossary-page-template/compare/v2.1.0...HEAD
425+
[2.1.0]: https://github.com/hilverd/glossary-page-template/compare/v2.0.0...v2.1.0
420426
[2.0.0]: https://github.com/hilverd/glossary-page-template/compare/v1.9.0...v2.0.0
421427
[1.9.0]: https://github.com/hilverd/glossary-page-template/compare/v1.8.6...v1.9.0
422428
[1.8.6]: https://github.com/hilverd/glossary-page-template/compare/v1.8.5...v1.8.6

elm-application.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hilverd/glossary-page-template",
33
"summary": "Create a glossary as a single HTML page hosted anywhere.",
4-
"version": "2.0.0",
4+
"version": "2.1.0",
55
"exposed-modules": [
66
"ApplicationShell",
77
"Data.AboutLink",

glossary.html

+5-1
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,15 @@
2121
document.documentElement.className = 'invisible';
2222
</script>
2323

24-
<!-- Uncomment the two lines below to add support for math typesetting using KaTeX. -->
24+
<!-- [not released yet] Uncomment the lines below to add support for math typesetting using KaTeX. -->
25+
26+
<!--
2527
2628
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.4/dist/katex.min.css" integrity="sha384-vKruj+a13U8yHIkAyGgK1J3ArTLzrFGBbBc0tDp4ad/EyewESeXE/Iv67Aj8gKZ0" crossorigin="anonymous">
2729
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.4/dist/katex.min.js" integrity="sha384-PwRUT/YqbnEjkZO0zZxNqcxACrXe+j766U2amXcgMg5457rve2Y7I6ZJSm2A0mS4" crossorigin="anonymous"></script>
2830
31+
-->
32+
2933
<script type="module" src="./glossary.js"></script>
3034
</head>
3135

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "glossary-page-template",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "Create a glossary as a single HTML page hosted anywhere.",
55
"private": true,
66
"author": "Hilverd Reker",

0 commit comments

Comments
 (0)