Skip to content

Commit

Permalink
version 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Jul 21, 2023
1 parent 801a4ec commit 6c560c5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
|_ _|___ ___ ___ ___ ___
| | | .'| . | . | -_| _|
|_| |__,|_ |_ |___|_|
|___|___| version 0.4.5
|___|___| version 0.5.0
```
# [Tagger: Zero dependency, Vanilla JavaScript Tag Editor](https://github.com/jcubic/tagger)

[![npm](https://img.shields.io/badge/npm-0.4.5-blue.svg)](https://www.npmjs.com/package/@jcubic/tagger)
[![npm](https://img.shields.io/badge/npm-0.5.0-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 @@ -100,6 +100,9 @@ TypeScript definition file:
[tagger.d.ts](https://github.com/jcubic/tagger/blob/master/tagger.d.ts)

## Changelog
### 0.5.0
* fix initialization [#23](https://github.com/jcubic/tagger/issues/23). Thanks to [James Lucas](https://github.com/lucasnetau)
* add placeholder option. Thanks to [James Lucas](https://github.com/lucasnetau)
### 0.4.5
* fix another wrapping issue [#37](https://github.com/jcubic/tagger/issues/37)
### 0.4.4
Expand Down Expand Up @@ -143,5 +146,5 @@ TypeScript definition file:

## License

Copyright (c) 2018-2022 [Jakub T. Jankiewicz](https://jcubic.pl/me)<br/>
Copyright (c) 2018-2023 [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.4.5",
"version": "0.5.0",
"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.4.4
* |___|___| version 0.5.0
*
* Tagger - Zero dependency, Vanilla JavaScript Tag Editor
*
* Copyright (c) 2018-2022 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Copyright (c) 2018-2023 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*/
.tagger {
Expand Down
1 change: 1 addition & 0 deletions tagger.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ interface tagger_options {
tag_limit?: number;
completion?: Tagger.completion;
link?: Tagger.link;
placeholder?: string;
}

interface tagger_instance {
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.4.5
* |___|___| version 0.5.0
*
* Tagger - Zero dependency, Vanilla JavaScript Tag Editor
*
* Copyright (c) 2018-2022 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Copyright (c) 2018-2023 Jakub T. Jankiewicz <https://jcubic.pl/me>
* Released under the MIT license
*/
/* global define, module, global */
Expand Down

0 comments on commit 6c560c5

Please sign in to comment.