Skip to content

Commit

Permalink
Released 0.12.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
brianreavis committed Jan 30, 2015
1 parent 872c7ab commit ada2dcd
Show file tree
Hide file tree
Showing 18 changed files with 694 additions and 382 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ else
sed -i.bak 's/"version": "[^"]*"/"version": "$(version)"/' package.json
rm *.bak
make compile
npm test || exit 1
cp dist/js/standalone/selectize.js ../.selectize.js
git add .
git commit -a -m "Released $(version)."
git tag v$(version)
git push origin master
git push origin --tags
npm publish
git checkout gh-pages
mv -f ../.selectize.js js/selectize.js
git commit -a -m "Updated selectize.js to latest version."
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "selectize",
"keywords": ["select", "ui", "form", "input", "control", "autocomplete", "tagging", "tag"],
"description": "Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.",
"version": "0.11.2",
"version": "0.12.0",
"license": "Apache License, Version 2.0",
"readmeFilename": "README.md",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions dist/css/selectize.bootstrap2.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* selectize.bootstrap2.css (v0.11.2) - Bootstrap 2 Theme
* Copyright (c) 2013 Brian Reavis & contributors
* selectize.bootstrap2.css (v0.12.0) - Bootstrap 2 Theme
* Copyright (c) 2013–2015 Brian Reavis & contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
* file except in compliance with the License. You may obtain a copy of the License at:
Expand Down Expand Up @@ -227,7 +227,7 @@
.selectize-dropdown {
position: absolute;
z-index: 10;
border: 1px solid #d0d0d0;
border: 1px solid #cccccc;
background: #ffffff;
margin: -1px 0 0 0;
border-top: 0 none;
Expand Down
10 changes: 5 additions & 5 deletions dist/css/selectize.bootstrap3.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* selectize.bootstrap3.css (v0.11.2) - Bootstrap 3 Theme
* Copyright (c) 2013 Brian Reavis & contributors
* selectize.bootstrap3.css (v0.12.0) - Bootstrap 3 Theme
* Copyright (c) 2013–2015 Brian Reavis & contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
* file except in compliance with the License. You may obtain a copy of the License at:
Expand Down Expand Up @@ -115,8 +115,8 @@
.selectize-input,
.selectize-input input {
color: #333333;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
font-family: inherit;
font-size: inherit;
line-height: 20px;
-webkit-font-smoothing: inherit;
}
Expand Down Expand Up @@ -227,7 +227,7 @@
.selectize-dropdown {
position: absolute;
z-index: 10;
border: 1px solid #cccccc;
border: 1px solid #d0d0d0;
background: #ffffff;
margin: -1px 0 0 0;
border-top: 0 none;
Expand Down
4 changes: 2 additions & 2 deletions dist/css/selectize.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* selectize.css (v0.11.2)
* Copyright (c) 2013 Brian Reavis & contributors
* selectize.css (v0.12.0)
* Copyright (c) 2013–2015 Brian Reavis & contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
* file except in compliance with the License. You may obtain a copy of the License at:
Expand Down
4 changes: 2 additions & 2 deletions dist/css/selectize.default.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* selectize.default.css (v0.11.2) - Default Theme
* Copyright (c) 2013 Brian Reavis & contributors
* selectize.default.css (v0.12.0) - Default Theme
* Copyright (c) 2013–2015 Brian Reavis & contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
* file except in compliance with the License. You may obtain a copy of the License at:
Expand Down
4 changes: 2 additions & 2 deletions dist/css/selectize.legacy.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* selectize.legacy.css (v0.11.2) - Default Theme
* Copyright (c) 2013 Brian Reavis & contributors
* selectize.legacy.css (v0.12.0) - Default Theme
* Copyright (c) 2013–2015 Brian Reavis & contributors
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
* file except in compliance with the License. You may obtain a copy of the License at:
Expand Down
Loading

0 comments on commit ada2dcd

Please sign in to comment.