Skip to content

Commit

Permalink
Prepare release
Browse files Browse the repository at this point in the history
Fixes #207
  • Loading branch information
mnater committed Nov 24, 2023
1 parent c1c6cb6 commit 274b8d3
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 23 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Version History

## Version WIP
## Version 5.3.0 (2023-11-24)
### Added
* loader/loaderSync now has a second argument containing an URL to the patternDirectory (issue #207)
### Fixed
* simplify events and clarify in docs
* bump devDependencies

## Version 5.2.1 (2023-10-19)
### Fixed
Expand Down
2 changes: 1 addition & 1 deletion Hyphenopoly.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Hyphenopoly 5.2.1 - client side hyphenation for webbrowsers
* @license Hyphenopoly 5.3.0 - client side hyphenation for webbrowsers
* ©2023 Mathias Nater, Güttingen (mathiasnater at gmail dot com)
* https://github.com/mnater/Hyphenopoly
*
Expand Down
2 changes: 1 addition & 1 deletion Hyphenopoly_Loader.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Hyphenopoly_Loader 5.2.1 - client side hyphenation
* @license Hyphenopoly_Loader 5.3.0 - client side hyphenation
* ©2023 Mathias Nater, Güttingen (mathiasnater at gmail dot com)
* https://github.com/mnater/Hyphenopoly
*
Expand Down
4 changes: 2 additions & 2 deletions docs/min/Hyphenopoly.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/min/Hyphenopoly_Loader.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions docs/min/testsuite/test44.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Test 001</title>
<title>Test 044</title>
<script src="../Hyphenopoly_Loader.js"></script>
<script>
(() => {
function assert() {
const tests = 3;
const tests = 4;
let i = 1;
let test = "";
let ref = "";
Expand Down Expand Up @@ -94,6 +94,10 @@ <h2>3: Foreign infix</h2>
<p id="test3" class="test hyphenate" lang="en-us">Reëlection</p>
<p id="ref3" class="ref" lang="en-us">Reëlection</p>

<h2>4: Contains soft hyphen</h2>
<p id="test4" class="test hyphenate" lang="en-us">hyphen&shy;ation</p>
<p id="ref4" class="ref" lang="en-us">hyphen&shy;ation</p>

<hr>
<div><span class="test">Test</span> <span class="ref">Ref</span></div>

Expand Down
2 changes: 1 addition & 1 deletion docs/min/testsuite/test48.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Test 007</title>
<title>Test 048</title>
<script src="../Hyphenopoly_Loader.js"></script>
<script>
(() => {
Expand Down
2 changes: 0 additions & 2 deletions docs/min/testsuite/testdriver.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* eslint-disable object-property-newline */

(function testDriver() {
"use strict";
const tests = [
Expand Down
2 changes: 1 addition & 1 deletion hyphenopoly.module.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* @license Hyphenopoly.module.js 5.2.1 - hyphenation for node
* @license Hyphenopoly.module.js 5.3.0 - hyphenation for node
* ©2023 Mathias Nater, Güttingen (mathiasnater at gmail dot com)
* https://github.com/mnater/Hyphenopoly
*
Expand Down
18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hyphenopoly",
"version": "5.2.1",
"version": "5.3.0",
"description": "Hyphenation for node and Polyfill for client-side hyphenation.",
"keywords": [
"hyphenation",
Expand Down Expand Up @@ -45,7 +45,7 @@
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"all-contributors-cli": "^6.26.1",
"assemblyscript": "^0.27.20",
"assemblyscript": "^0.27.22",
"c8": "^8.0.1",
"eslint": "^8.54.0",
"eslint-plugin-html": "^7.1.0",
Expand Down

0 comments on commit 274b8d3

Please sign in to comment.