diff --git a/README.md b/README.md
index d2cbc81..8e49cc7 100644
--- a/README.md
+++ b/README.md
@@ -4,16 +4,17 @@
#### Features
-- No Dependencies
+- **Tagging Support (+v.1.1.0)**
+- No JS Dependencies
- List Filtering/Searching
- Supports Vuex
- Select Single/Multiple Options
-- Bootstrap Friendly Classes
-- Excellent Test Coverage
+- Bootstrap Friendly Markup
+- +90% Test Coverage
#### Upcoming/In Progress
-- Tagging (adding options not present in list, see `taggable` branch)
+- ~~Tagging (adding options not present in list, see `taggable` branch)~~ **added in v.1.1.0**
- Rich Option Templating
- Asyncronous Option Loading
@@ -48,120 +49,137 @@ export default {
## Parameters
```javascript
- /**
- * Contains the currently selected value. Very similar to a
- * `value` attribute on an <input>. In most cases, you'll want
- * to set this as a two-way binding, using :value.sync. However,
- * this will not work with Vuex, in which case you'll need to use
- * the onChange callback property.
- * @type {Object||String||null}
- */
- value: {
- default: null
- },
+ /**
+ * Contains the currently selected value. Very similar to a
+ * `value` attribute on an . In most cases, you'll want
+ * to set this as a two-way binding, using :value.sync. However,
+ * this will not work with Vuex, in which case you'll need to use
+ * the onChange callback property.
+ * @type {Object||String||null}
+ */
+ value: {
+ default: null
+ },
- /**
- * An array of strings or objects to be used as dropdown choices.
- * If you are using an array of objects, vue-select will look for
- * a `label` key (ex. [{label: 'This is Foo', value: 'foo'}]). A
- * custom label key can be set with the `label` prop.
- * @type {Array}
- */
- options: {
- type: Array,
- default() { return [] },
- },
+ /**
+ * An array of strings or objects to be used as dropdown choices.
+ * If you are using an array of objects, vue-select will look for
+ * a `label` key (ex. [{label: 'This is Foo', value: 'foo'}]). A
+ * custom label key can be set with the `label` prop.
+ * @type {Object}
+ */
+ options: {
+ type: Array,
+ default() { return [] },
+ },
- /**
- * Enable/disable filtering the options.
- * @type {Boolean}
- */
- searchable: {
- type: Boolean,
- default: true
- },
+ /**
+ * Sets the max-height property on the dropdown list.
+ * @deprecated
+ * @type {String}
+ */
+ maxHeight: {
+ type: String,
+ default: '400px'
+ },
- /**
- * Equivalent to the `multiple` attribute on a `<select>` input.
- * @type {Object}
- */
- multiple: {
- type: Boolean,
- default: false
- },
+ /**
+ * Enable/disable filtering the options.
+ * @type {Boolean}
+ */
+ searchable: {
+ type: Boolean,
+ default: true
+ },
- /**
- * Equivalent to the `placeholder` attribute on an `<input>`.
- * @type {Object}
- */
- placeholder: {
- type: String,
- default: ''
- },
+ /**
+ * Equivalent to the `multiple` attribute on a `