Skip to content

Commit

Permalink
Update version to v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kimulaco committed Sep 1, 2019
1 parent bb17174 commit edc525f
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 7 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,16 @@
# Change Log

## [v1.2.4] - 2019-05-25
## [v2.0.0] 2019-09-02

[https://github.com/kimulaco/vanilla-smoothie/releases/tag/v2.0.0](https://github.com/kimulaco/vanilla-smoothie/releases/tag/v2.0.0)

- Replace to TypeScript.
- Change method parameters.
- Add adjust option.
- Add Travis CI and pre-commit lint.
- Add changelog file.

## [v1.2.4] 2019-05-25

[https://github.com/kimulaco/vanilla-smoothie/releases/tag/v1.2.4](https://github.com/kimulaco/vanilla-smoothie/releases/tag/v1.2.4)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -49,7 +49,7 @@ vanillaSmoothie.scrollTo('#anchor-01', {
You can also get the this library with CDN or Zip download. Ideal for small samples.

```html
<script src="https://cdn.jsdelivr.net/npm/vanilla-smoothie@1.2.4/dist/vanilla-smoothie.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanilla-smoothie@2.0.0/dist/vanilla-smoothie.min.js"></script>
<script>
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener('click', (event) => {
Expand Down
2 changes: 1 addition & 1 deletion dist/vanilla-smoothie.js
@@ -1,5 +1,5 @@
/**
* VanillaSmoothie.js v1.2.4
* VanillaSmoothie.js v2.0.0
* https://kimulaco.github.io/vanilla-smoothie/
* Copyright (c) 2019 kimulaco
* This software is released under the MIT License.
Expand Down
2 changes: 1 addition & 1 deletion dist/vanilla-smoothie.min.js

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

2 changes: 1 addition & 1 deletion docs/index.html
Expand Up @@ -39,7 +39,7 @@ <h3 id="nodejs">Node.js</h3>
})</code></pre>
<h3 id="browser">Browser</h3>
<p>You can also get the this library with CDN or Zip download. Ideal for small samples.</p>
<pre><code class="language-html">&lt;script src=&quot;https://cdn.jsdelivr.net/npm/vanilla-smoothie@1.2.4/dist/vanilla-smoothie.min.js&quot;&gt;&lt;/script&gt;
<pre><code class="language-html">&lt;script src=&quot;https://cdn.jsdelivr.net/npm/vanilla-smoothie@2.0.0/dist/vanilla-smoothie.min.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
document.querySelectorAll(&#39;a[href^=&quot;#&quot;]&#39;).forEach((anchor) =&gt; {
anchor.addEventListener(&#39;click&#39;, (event) =&gt; {
Expand Down
2 changes: 1 addition & 1 deletion docs/js/vanilla-smoothie.js

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

2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "vanilla-smoothie",
"version": "1.2.4",
"version": "2.0.0",
"description": "A minimal smooth scroll library based on vanilla JavaScript.",
"author": "kimulaco",
"license": "MIT",
Expand Down

0 comments on commit edc525f

Please sign in to comment.