From f190f42f0988e57c2a993dddd2aec95e4296ce20 Mon Sep 17 00:00:00 2001 From: Technology Consortium <23320411+tech-consortium@users.noreply.github.com> Date: Mon, 26 Mar 2018 19:23:35 -0500 Subject: [PATCH 1/6] Changing version to v3.0.2 Changing version to v3.0.2 since so a new tag/release can be created where the package.json version matches the git tag/release version. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e7c36c2..8de6d05 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-selectize2", "description": "This is an Angular.js directive for Brian Reavis's selectize jQuery plugin. It supports all of Selectize's features", - "version": "v3.0.1", + "version": "v3.0.2", "private": false } From c3885e9c9ff214aaec1b50ea02259216a43c9839 Mon Sep 17 00:00:00 2001 From: Technology Consortium <23320411+tech-consortium@users.noreply.github.com> Date: Mon, 26 Mar 2018 19:28:17 -0500 Subject: [PATCH 2/6] Update CHANGELOG.md --- CHANGELOG.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 998b1c7..974634f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.0.2 (2017-03-26) + +Changes: + + - Updated version so a new tag/release can be created where the version in the package.json version matches the tag/release version + ## 3.0.1 (2015-09-07) Documentation: @@ -11,4 +17,4 @@ Changes: - Dropped support for simple arrays `['Option 1', 'Option 2']` in order to simplify the directive and ensure consistent behavior. - Renamed `'selectize.js'` to `'angular-selectize.js'` to avoid confusion. - - update to selectize 0.12.1 \ No newline at end of file + - update to selectize 0.12.1 From ca045045a6ae9a3e2917db24641b15fd211d56e5 Mon Sep 17 00:00:00 2001 From: Technology Consortium <23320411+tech-consortium@users.noreply.github.com> Date: Mon, 26 Mar 2018 19:33:28 -0500 Subject: [PATCH 3/6] Update bower.json Updated version so a new tag/release can be created where the version in the package.json version matches the tag/release version --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bower.json b/bower.json index 6b0f6fd..94f8003 100755 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "angular-selectize2", - "version": "3.0.1", + "version": "3.0.2", "main" : [ "./dist/angular-selectize.js" ], From ddec2b639408b5e96b8d108eb88d2bbfc973d6ba Mon Sep 17 00:00:00 2001 From: Technology Consortium <23320411+tech-consortium@users.noreply.github.com> Date: Mon, 26 Mar 2018 19:59:50 -0500 Subject: [PATCH 4/6] Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 974634f..2ab432f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 3.0.3 (2017-03-26) + +Changes: + + - Updated package.json so it was valid. + ## 3.0.2 (2017-03-26) Changes: From c4cd75fa00f063d88b3920af90b1fcbcb39a606c Mon Sep 17 00:00:00 2001 From: Technology Consortium <23320411+tech-consortium@users.noreply.github.com> Date: Mon, 26 Mar 2018 20:06:10 -0500 Subject: [PATCH 5/6] Update CHANGELOG.md Adding changes to v3.0.2 --- CHANGELOG.md | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ab432f..5757a5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,14 +1,9 @@ -## 3.0.3 (2017-03-26) - -Changes: - - - Updated package.json so it was valid. - ## 3.0.2 (2017-03-26) Changes: - Updated version so a new tag/release can be created where the version in the package.json version matches the tag/release version + - Updated package.json so it was valid. ## 3.0.1 (2015-09-07) From bd877ae50c4c93a143626aa84cd28fc5afeaa800 Mon Sep 17 00:00:00 2001 From: Technology Consortium <23320411+tech-consortium@users.noreply.github.com> Date: Mon, 26 Mar 2018 20:07:14 -0500 Subject: [PATCH 6/6] Update package.json Correcting package.json so it is valid. --- package.json | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8de6d05..317df0c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,29 @@ { "name": "angular-selectize2", + "keywords": [ + "select", + "ui", + "form", + "input", + "control", + "autocomplete", + "tagging", + "angular", + "directive", + "tag" + ], + "main": "dist/angular-selectize.js", "description": "This is an Angular.js directive for Brian Reavis's selectize jQuery plugin. It supports all of Selectize's features", "version": "v3.0.2", - "private": false + "license": "MIT", + "repository": { + "type": "git", + "url": "git://github.com/machineboy2045/angular-selectize.git" + }, + "dependencies": { + "selectize": ">=0.12.1" + }, + "engines": { + "node": "*" + } }