Skip to content

Commit

Permalink
Mark v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbruxelles committed Jul 30, 2022
1 parent 2705759 commit 4b815b1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "si18n.js",
"version": "1.1.2",
"version": "1.2.0",
"description": "A simple and lightweight way to integrate internationalization on a small web site project.",
"main": "./si18n.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/si18n.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* @license si18n.js - v1.1.2
* @license si18n.js - v1.2.0
* Copyright (c) José dBruxelles <jd.bruxelles.dev/c>.
*
* This source code is licensed under the MIT license found in the
Expand Down
10 changes: 5 additions & 5 deletions website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,16 +139,16 @@ <h1 data-si18n="good_morning"></h1>
&lt;script type="module" src="https://si18n.js.bruxelles.dev/si18n.min.js"&gt;&lt;/script&gt;

&lt;!-- UNPKG --&gt;
&lt;script type="module" src="https://unpkg.com/si18n.js@1.1.2/si18n.js"&gt;&lt;/script&gt;
&lt;script type="module" src="https://unpkg.com/si18n.js@1.1.2/si18n.min.js"&gt;&lt;/script&gt;
&lt;script type="module" src="https://unpkg.com/si18n.js@1.2.0/si18n.js"&gt;&lt;/script&gt;
&lt;script type="module" src="https://unpkg.com/si18n.js@1.2.0/si18n.min.js"&gt;&lt;/script&gt;

&lt;!-- jsDelivr --&gt;
&lt;script type="module" src="https://cdn.jsdelivr.net/npm/si18n.js@1.1.2/si18n.js"&gt;&lt;/script&gt;
&lt;script type="module" src="https://cdn.jsdelivr.net/npm/si18n.js@1.1.2/si18n.min.js"&gt;&lt;/script&gt;
&lt;script type="module" src="https://cdn.jsdelivr.net/npm/si18n.js@1.2.0/si18n.js"&gt;&lt;/script&gt;
&lt;script type="module" src="https://cdn.jsdelivr.net/npm/si18n.js@1.2.0/si18n.min.js"&gt;&lt;/script&gt;

&lt;!-- UNPKG --&gt;
&lt;script type="module"&gt;
import Si18n from 'https://cdn.jsdelivr.net/npm/si18n.js@1.1.2/si18n.min.js';
import Si18n from 'https://cdn.jsdelivr.net/npm/si18n.js@1.2.0/si18n.min.js';
// ...
&lt;/script&gt;</code></pre>
</div>
Expand Down

0 comments on commit 4b815b1

Please sign in to comment.