Skip to content

Commit

Permalink
version 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jul 16, 2024
1 parent 746e1e1 commit 1dcd86e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.6.2
* fix removing tags containing multiple consecutive spaces [#47](https://github.com/jcubic/tagger/pull/47). Thanks to [nuclear06](https://github.com/nuclear06)

## 0.6.1
* fix triggering change event for ReactJS

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
|_ _|___ ___ ___ ___ ___
| | | .'| . | . | -_| _|
|_| |__,|_ |_ |___|_|
|___|___| version 0.6.1
|___|___| version 0.6.2
```
# [Tagger: Zero dependency, Vanilla JavaScript Tag Editor](https://github.com/jcubic/tagger)

[![npm](https://img.shields.io/badge/npm-0.6.1-blue.svg)](https://www.npmjs.com/package/@jcubic/tagger)
[![npm](https://img.shields.io/badge/npm-0.6.2-blue.svg)](https://www.npmjs.com/package/@jcubic/tagger)

![Tag Editor widget in JavaScript](https://raw.githubusercontent.com/jcubic/tagger/master/screenshot.png)

Expand Down Expand Up @@ -111,5 +111,5 @@ TypeScript definition file:

## License

Copyright (c) 2018-2023 [Jakub T. Jankiewicz](https://jcubic.pl/me)<br/>
Copyright (c) 2018-2024 [Jakub T. Jankiewicz](https://jcubic.pl/me)<br/>
Released under the MIT license
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jcubic/tagger",
"version": "0.6.1",
"version": "0.6.2",
"description": "Zero dependency, Vanilla JavaScript Tag Editor",
"typings": "tagger.d.ts",
"main": "tagger.js",
Expand Down
4 changes: 2 additions & 2 deletions tagger.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* |_ _|___ ___ ___ ___ ___
* | | | .'| . | . | -_| _|
* |_| |__,|_ |_ |___|_|
* |___|___| version 0.6.1
* |___|___| version 0.6.2
*
* Tagger - Zero dependency, Vanilla JavaScript Tag Editor
*
* Copyright (c) 2018-2023 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Copyright (c) 2018-2024 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*/
.tagger {
Expand Down
4 changes: 2 additions & 2 deletions tagger.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* |_ _|___ ___ ___ ___ ___
* | | | .'| . | . | -_| _|
* |_| |__,|_ |_ |___|_|
* |___|___| version 0.4.4
* |___|___| version 0.6.2
*
* Tagger - Zero dependency, Vanilla JavaScript Tag Editor
*
* Copyright (c) 2018-2023 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Copyright (c) 2018-2024 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*/
declare namespace Tagger {
Expand Down
4 changes: 2 additions & 2 deletions tagger.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
* |_ _|___ ___ ___ ___ ___
* | | | .'| . | . | -_| _|
* |_| |__,|_ |_ |___|_|
* |___|___| version 0.6.1
* |___|___| version 0.6.2
*
* Tagger - Zero dependency, Vanilla JavaScript Tag Editor
*
* Copyright (c) 2018-2023 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Copyright (c) 2018-2024 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*/
/* global define, module, global */
Expand Down

0 comments on commit 1dcd86e

Please sign in to comment.