Skip to content

Commit ada2dcd

Browse files
committed
Released 0.12.0.
1 parent 872c7ab commit ada2dcd

18 files changed

+694
-382
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,14 @@ else
1717
sed -i.bak 's/"version": "[^"]*"/"version": "$(version)"/' package.json
1818
rm *.bak
1919
make compile
20+
npm test || exit 1
2021
cp dist/js/standalone/selectize.js ../.selectize.js
2122
git add .
2223
git commit -a -m "Released $(version)."
2324
git tag v$(version)
2425
git push origin master
2526
git push origin --tags
27+
npm publish
2628
git checkout gh-pages
2729
mv -f ../.selectize.js js/selectize.js
2830
git commit -a -m "Updated selectize.js to latest version."

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "selectize",
33
"keywords": ["select", "ui", "form", "input", "control", "autocomplete", "tagging", "tag"],
44
"description": "Selectize is a jQuery-based custom <select> UI control. Useful for tagging, contact lists, country selectors, etc.",
5-
"version": "0.11.2",
5+
"version": "0.12.0",
66
"license": "Apache License, Version 2.0",
77
"readmeFilename": "README.md",
88
"repository": {

dist/css/selectize.bootstrap2.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* selectize.bootstrap2.css (v0.11.2) - Bootstrap 2 Theme
3-
* Copyright (c) 2013 Brian Reavis & contributors
2+
* selectize.bootstrap2.css (v0.12.0) - Bootstrap 2 Theme
3+
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
66
* file except in compliance with the License. You may obtain a copy of the License at:
@@ -227,7 +227,7 @@
227227
.selectize-dropdown {
228228
position: absolute;
229229
z-index: 10;
230-
border: 1px solid #d0d0d0;
230+
border: 1px solid #cccccc;
231231
background: #ffffff;
232232
margin: -1px 0 0 0;
233233
border-top: 0 none;

dist/css/selectize.bootstrap3.css

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* selectize.bootstrap3.css (v0.11.2) - Bootstrap 3 Theme
3-
* Copyright (c) 2013 Brian Reavis & contributors
2+
* selectize.bootstrap3.css (v0.12.0) - Bootstrap 3 Theme
3+
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
66
* file except in compliance with the License. You may obtain a copy of the License at:
@@ -115,8 +115,8 @@
115115
.selectize-input,
116116
.selectize-input input {
117117
color: #333333;
118-
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
119-
font-size: 14px;
118+
font-family: inherit;
119+
font-size: inherit;
120120
line-height: 20px;
121121
-webkit-font-smoothing: inherit;
122122
}
@@ -227,7 +227,7 @@
227227
.selectize-dropdown {
228228
position: absolute;
229229
z-index: 10;
230-
border: 1px solid #cccccc;
230+
border: 1px solid #d0d0d0;
231231
background: #ffffff;
232232
margin: -1px 0 0 0;
233233
border-top: 0 none;

dist/css/selectize.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* selectize.css (v0.11.2)
3-
* Copyright (c) 2013 Brian Reavis & contributors
2+
* selectize.css (v0.12.0)
3+
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
66
* file except in compliance with the License. You may obtain a copy of the License at:

dist/css/selectize.default.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* selectize.default.css (v0.11.2) - Default Theme
3-
* Copyright (c) 2013 Brian Reavis & contributors
2+
* selectize.default.css (v0.12.0) - Default Theme
3+
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
66
* file except in compliance with the License. You may obtain a copy of the License at:

dist/css/selectize.legacy.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* selectize.legacy.css (v0.11.2) - Default Theme
3-
* Copyright (c) 2013 Brian Reavis & contributors
2+
* selectize.legacy.css (v0.12.0) - Default Theme
3+
* Copyright (c) 2013–2015 Brian Reavis & contributors
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
66
* file except in compliance with the License. You may obtain a copy of the License at:

0 commit comments

Comments
 (0)