Skip to content

Commit

Permalink
🔖 minor version bump to v4.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
niketpathak committed Sep 5, 2022
1 parent 713675a commit dc75fe1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ body:
- v4.7.0
- v4.8.0
- v4.9.0
- v4.10.0
- Latest
validations:
required: true
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ require('typeahead-standalone/dist/basic.css');
<script src="https://cdn.jsdelivr.net/npm/typeahead-standalone"></script>

<!-- or use unpkg.com to get a specific version -->
<link rel="stylesheet" href="https://unpkg.com/typeahead-standalone@4.9.0/dist/basic.css" />
<script src="https://unpkg.com/typeahead-standalone@4.9.0/dist/typeahead-standalone.js"></script>
<link rel="stylesheet" href="https://unpkg.com/typeahead-standalone@4.10.0/dist/basic.css" />
<script src="https://unpkg.com/typeahead-standalone@4.10.0/dist/typeahead-standalone.js"></script>
```
The library will be available as a global object at **`window.typeahead`**

Expand Down
10 changes: 5 additions & 5 deletions docs/pages/install.html
Original file line number Diff line number Diff line change
Expand Up @@ -82,21 +82,21 @@ <h4><a href="#install?id=cdn" id="cdn" title="Install typeahead-standalone.js vi
<p>The above links, by default, point to the latest version of typeahead-standalone.js</p>
</div>
<div class="tab-pane fade" id="nav-unpkg" role="tabpanel" aria-labelledby="nav-unpkg-tab">
<a class="simple-link" href="https://unpkg.com/typeahead-standalone@4.9.0/dist/typeahead-standalone.js">
<a class="simple-link" href="https://unpkg.com/typeahead-standalone@4.10.0/dist/typeahead-standalone.js">
<img src="./assets/img/logos/unpkg_logo.png" alt="Unpkg typeahead-standalone CDN Logo" width="100px">
</a>

<p>Include the <code>Javascript</code></p>
<div class="codeContainer">
<span class="lang">HTML</span>
<span class="copy" title="Copy to Clipboard"><i class="far fa-copy"></i></span>
<pre class="hljs language-html language-xml">&#60;script src="https://unpkg.com/typeahead-standalone@4.9.0/dist/typeahead-standalone.js"&#62;&#60;/script&#62;</pre>
<pre class="hljs language-html language-xml">&#60;script src="https://unpkg.com/typeahead-standalone@4.10.0/dist/typeahead-standalone.js"&#62;&#60;/script&#62;</pre>
</div>
<p>Include the <code>CSS</code> (Optional, we recommend to override the default styling)</p>
<div class="codeContainer">
<span class="lang">HTML</span>
<span class="copy" title="Copy to Clipboard"><i class="far fa-copy"></i></span>
<pre class="hljs language-html language-xml">&#60;link rel="stylesheet" href="https://unpkg.com/typeahead-standalone@4.9.0/dist/basic.css" /&#62;</pre>
<pre class="hljs language-html language-xml">&#60;link rel="stylesheet" href="https://unpkg.com/typeahead-standalone@4.10.0/dist/basic.css" /&#62;</pre>
</div>
<p>The above links can be used to link to a specific version of typeahead-standalone.js</p>
</div>
Expand All @@ -113,10 +113,10 @@ <h4><a href="#install?id=direct-download" id="direct-download" title="Install ty

<div class="codeContainer">
<span class="copy" title="Copy to Clipboard"><i class="far fa-copy"></i></span>
<pre class="hljs">https://registry.npmjs.org/typeahead-standalone/-/typeahead-standalone-4.9.0.tgz</pre>
<pre class="hljs">https://registry.npmjs.org/typeahead-standalone/-/typeahead-standalone-4.10.0.tgz</pre>
</div>

where <code>4.9.0</code> refers to the version number. To use another version, replace the version in the above url by the desired version.
where <code>4.10.0</code> refers to the version number. To use another version, replace the version in the above url by the desired version.
All available versions/releases are listed on <a href="https://github.com/digitalfortress-tech/typeahead-standalone/releases">github</a>.

The required JS and CSS is located in the <code>dist/</code> folder.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "typeahead-standalone",
"title": "typeahead-standalone",
"description": "A fast fully-featured standalone autocomplete library",
"version": "4.9.0",
"version": "4.10.0",
"homepage": "https://typeahead.digitalfortress.tech",
"license": "MIT",
"scripts": {
Expand Down

0 comments on commit dc75fe1

Please sign in to comment.