From e71e5e3991cd30a9ad93c3cf879279602e68a85e Mon Sep 17 00:00:00 2001 From: Johnny Shields Date: Fri, 13 Dec 2013 06:48:46 +0900 Subject: [PATCH] - Bump version to 3.0.1 - Update CHANGELOG and README to reflect recent changes --- CHANGELOG.md | 23 ++++++++++-- README.md | 44 +++++++++++------------ TagManager.jquery.json | 79 +++++++++++++++++++++--------------------- bower.json | 2 +- composer.json | 4 +-- package.json | 78 ++++++++++++++++++++--------------------- tagmanager.js | 2 +- 7 files changed, 123 insertions(+), 109 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29f4bff..1082bfe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,24 @@ -## 3.0.0 +## 3.0.1 - 2012-12-12 -* Feature: Added API method 'tags', which return a json with the current list of tags (Max Favilli) -* Deprecations: Removed support for bootstrap typeahead +* Issue #180: Add 'tags' method to retrieve tags (LukeL99) +* Issue #169: Fix 'AjaxPushAllTags' option (mpseidel) +* Issue #153: Correct documentation related to hiddenTagListId (fogs) +* Issue #178: Fix 'OnlyTagList' option (sebet) +* Issue #176: Add bower.json for Bower support (noirbizarre) +* Issue #168: Constructor should not return undefined (aurbano) +* Issue #163: Add new event tm:duplicated when there is a duplicated tag (aurbano) +* Use jQuery.map() instead of native JS map() (apperception) +* Add composer.json for PHP projects (fogs) +* Fix various issues related to jQuery refactor (dave0783) + +## 3.0.0 - 2012-08-22 + +* Refactor tagmanager.js to confirm to jQuery plugin standards (dave0783) +* Add jQuery event hooks (dave0783) +* Add support for Twitter Typeahead.js +* Drop support for Twitter Bootstrap v2 Typeahead (which is abandoned since Bootstrap v3) +* Refactor tagmanager.js to confirm to jQuery plugin standards (dave0783) +* Rename all files from "bootstrap-tagmanager" to "tagmanager" ## 2.4.3 - 2012-12-12 diff --git a/README.md b/README.md index d5e50fb..ec4e7f1 100644 --- a/README.md +++ b/README.md @@ -1,25 +1,21 @@ -[Tags Manager v3.0 Release Candidate](http://welldonethings.com/tags/manager/v3) -========== +# [Tags Manager v3.0.1](http://welldonethings.com/tags/manager/v3) -A jQuery plugin (working nicely with [Twitter Bootstrap](http://twitter.github.com/bootstrap)) +A jQuery plugin to create tag input fields, which works nicely with [Twitter Typeahead.js](http://twitter.github.io/typeahead.js/) and [Twitter Bootstrap](http://twitter.github.com/bootstrap) -[Demo and Documentation](http://welldonethings.com/tags/manager/v3) ------------ +## [Demo and Documentation](http://welldonethings.com/tags/manager/v3) See a demo and read all the documentation at http://welldonethings.com/tags/manager/v3. The documentation is automatically synced from Github, so if you'd like to make a correction please modify `/docs/docs.html` and raise a pull request. -Quick start ------------ +## Quick Start Clone the repo, `git clone git@github.com:max-favilli/tagmanager.git`, or [download the latest release](https://github.com/max-favilli/tagmanager/zipball/master). -Reporting Issues ------------ +## Reporting Issues * Please report issues on [our Github Issue Tracker](https://github.com/max-favilli/tagmanager/issues). * In your report, please provide a [jsfiddle](http://jsfiddle.net) (preferred), gist, or pasted HTML/JS with steps to **reproduce** the issue. @@ -30,22 +26,20 @@ Reporting Issues * Pull requests, documentation requests, and enhancement ideas are welcome. -NUGET ------------ +## Package Management Tools -PM> Install-Package Bootstrap-tagmanager +We include the required files to use third-party package management tools in our repo. We rely on the community to help +maintain these files, as the authors of this plugin do not use these tools. If you notice any issue with these or would like +to add support for a new package manager, please raise a Pull Request. +* Nuget: PM> Install-Package Bootstrap-tagmanager +* Bower +* Composer (PHP) +* package.json (node.js) +* TypeScript -Thanks to ------------- -The development of Tags Manager was financed by LogMyMoney.com a [simple and stupid online personal finance tool to track all your expenses](https:logmymoney.com), so... - -Thanks [logmymoney.com](https:logmymoney.com) - - -Authors -------- +## Authors **Max Favilli** @@ -58,8 +52,12 @@ Authors + http://github.com/johnnyshields -Copyright and license ---------------------- +## Special Thanks + +The initial development of Tags Manager was funded by [LogMyMoney.com](http://www.logmymoney.com), a simple online personal finance tool. + + +## Copyright and License Copyright 2012 MaxFavilli.com diff --git a/TagManager.jquery.json b/TagManager.jquery.json index 1ab4362..0e8c459 100644 --- a/TagManager.jquery.json +++ b/TagManager.jquery.json @@ -1,42 +1,41 @@ { - "name": "bootstrap.TagManager", - "version": "3.0.0", - "title": "Tag Manager", - "author": { - "name": "Max Favilli", - "url": "http://maxfavilli.com" - }, - "licenses": [ - { - "type": "MPL", - "url": "http://www.mozilla.org/MPL/2.0/index.txt" - } - ], - "dependencies": { - "jquery": "1" - }, - "description": "A tags manager, with this plugin a input field is used to collect tags and rendered as tags.", - "keywords": [ - "tags", - "manager", - "input", - "form" - ], - "homepage": "https://github.com/max-favilli/tagmanager", - "maintainers": [ - { - "name": "Max Favilli", - "url": "https://github.com/max-favilli" - }, - { - "name": "Johnny Shields", - "url": "https://github.com/johnnyshields" - } - ], - "files": [ - "README.md", - "tagmanager.css", - "tagmanager.js", - "license.txt" - ] + "name": "TagManager", + "version": "3.0.1", + "title": "Tag Manager", + "author": { + "name": "Max Favilli", + "url": "http://maxfavilli.com" + }, + "licenses": [ + { + "type": "MPL", + "url": "http://www.mozilla.org/MPL/2.0/index.txt" + } + ], + "dependencies": { + "jquery": "1" + }, + "description": "A jQuery plugin to create tag input fields, which works nicely with Twitter Typeahead.js and Twitter Bootstrap", + "keywords": [ + "tags", + "manager", + "input", + "form" + ], + "homepage": "https://github.com/max-favilli/tagmanager", + "maintainers": [ + { + "name": "Max Favilli", + "url": "https://github.com/max-favilli" + },{ + "name": "Johnny Shields", + "url": "https://github.com/johnnyshields" + } + ], + "files": [ + "README.md", + "tagmanager.css", + "tagmanager.js", + "license.txt" + ] } diff --git a/bower.json b/bower.json index 1b3d199..f43b8a8 100644 --- a/bower.json +++ b/bower.json @@ -8,7 +8,7 @@ "authors": [ "Max Favilli" ], - "description": "A jQuery plugin (working nicely with twitter bootstrap)", + "description": "A jQuery plugin to create tag input fields, which works nicely with Twitter Typeahead.js and Twitter Bootstrap", "keywords": [ "tag", "autocomplete", diff --git a/composer.json b/composer.json index 031e8a1..810aea7 100644 --- a/composer.json +++ b/composer.json @@ -1,9 +1,9 @@ { "name": "max-favilli/tagmanager", - "description": "A tags manager, with this plugin a input field is used to collect tags and rendered as tags.", + "description": "A jQuery plugin to create tag input fields, which works nicely with Twitter Typeahead.js and Twitter Bootstrap", "type": "component", "homepage": "https://github.com/max-favilli/tagmanager", - "version": "3.0.0", + "version": "3.0.1", "license": "MPL", "authors": [ { diff --git a/package.json b/package.json index a1657dd..0e8c459 100644 --- a/package.json +++ b/package.json @@ -1,41 +1,41 @@ { - "name": "TagManager", - "version": "3.0.0", - "title": "Tag Manager", - "author": { - "name": "Max Favilli", - "url": "http://maxfavilli.com" - }, - "licenses": [ - { - "type": "MPL", - "url": "http://www.mozilla.org/MPL/2.0/index.txt" - } - ], - "dependencies": { - "jquery": "1" - }, - "description": "A tags manager, with this plugin a input field is used to collect tags and rendered as tags.", - "keywords": [ - "tags", - "manager", - "input", - "form" - ], - "homepage": "https://github.com/max-favilli/tagmanager", - "maintainers": [ - { - "name": "Max Favilli", - "url": "https://github.com/max-favilli" - },{ - "name": "Johnny Shields", - "url": "https://github.com/johnnyshields" - } - ], - "files": [ - "README.md", - "tagmanager.css", - "tagmanager.js", - "license.txt" - ] + "name": "TagManager", + "version": "3.0.1", + "title": "Tag Manager", + "author": { + "name": "Max Favilli", + "url": "http://maxfavilli.com" + }, + "licenses": [ + { + "type": "MPL", + "url": "http://www.mozilla.org/MPL/2.0/index.txt" + } + ], + "dependencies": { + "jquery": "1" + }, + "description": "A jQuery plugin to create tag input fields, which works nicely with Twitter Typeahead.js and Twitter Bootstrap", + "keywords": [ + "tags", + "manager", + "input", + "form" + ], + "homepage": "https://github.com/max-favilli/tagmanager", + "maintainers": [ + { + "name": "Max Favilli", + "url": "https://github.com/max-favilli" + },{ + "name": "Johnny Shields", + "url": "https://github.com/johnnyshields" + } + ], + "files": [ + "README.md", + "tagmanager.css", + "tagmanager.js", + "license.txt" + ] } diff --git a/tagmanager.js b/tagmanager.js index 770d92d..0cebfd5 100644 --- a/tagmanager.js +++ b/tagmanager.js @@ -1,5 +1,5 @@ /* =================================================== - * tagmanager.js v3.0.0 + * tagmanager.js v3.0.1 * http://welldonethings.com/tags/manager * =================================================== * Copyright 2012 Max Favilli