README.md in schema_plus_enums-0.1.5 vs README.md in schema_plus_enums-0.1.6
- old
+ new
@@ -1,9 +1,8 @@
[![Gem Version](https://badge.fury.io/rb/schema_plus_enums.svg)](http://badge.fury.io/rb/schema_plus_enums)
[![Build Status](https://secure.travis-ci.org/SchemaPlus/schema_plus_enums.svg)](http://travis-ci.org/SchemaPlus/schema_plus_enums)
[![Coverage Status](https://img.shields.io/coveralls/SchemaPlus/schema_plus_enums.svg)](https://coveralls.io/r/SchemaPlus/schema_plus_enums)
-[![Dependency Status](https://gemnasium.com/lomba/schema_plus_enums.svg)](https://gemnasium.com/SchemaPlus/schema_plus_enums)
# SchemaPlus::Enums
SchemaPlus::Enums provides support for enum data types in ActiveRecord. Currently the support is limited to defining enum data types, for PostgreSQL only.
@@ -27,14 +26,19 @@
SchemaPlus::Enums is tested on:
<!-- SCHEMA_DEV: MATRIX - begin -->
<!-- These lines are auto-generated by schema_dev based on schema_dev.yml -->
-* ruby **2.2.5** with activerecord **4.2**, using **postgresql**
-* ruby **2.2.5** with activerecord **5.0**, using **postgresql**
-* ruby **2.3.1** with activerecord **4.2**, using **postgresql**
-* ruby **2.3.1** with activerecord **5.0**, using **postgresql**
+* ruby **2.2.7** with activerecord **4.2**, using **postgresql**
+* ruby **2.2.7** with activerecord **5.0**, using **postgresql**
+* ruby **2.2.7** with activerecord **5.1**, using **postgresql**
+* ruby **2.3.4** with activerecord **4.2**, using **postgresql**
+* ruby **2.3.4** with activerecord **5.0**, using **postgresql**
+* ruby **2.3.4** with activerecord **5.1**, using **postgresql**
+* ruby **2.4.1** with activerecord **4.2**, using **postgresql**
+* ruby **2.4.1** with activerecord **5.0**, using **postgresql**
+* ruby **2.4.1** with activerecord **5.1**, using **postgresql**
<!-- SCHEMA_DEV: MATRIX - end -->
## Usage
@@ -60,11 +64,12 @@
```ruby
drop_enum :color
drop_enum :color, schema: 'cmyk'
```
-## History
+## Release Notes
+* 0.1.6 - Update dependencies to include AR 5.1. Thanks to [@willsoto](https://github.com/willsoto)
* 0.1.5 - Update dependencies to include AR 5.0. Thanks to [@jimcavoli](https://github.com/jimcavoli)
* 0.1.4 - Missing require
* 0.1.3 - Explicit gem dependencies
* 0.1.2 - Upgrade schema_plus_core dependency
* 0.1.1 - Clean up and sort dumper output. Thanks to [@pik](https://github.com/pik)