README.md in jsonb_accessor-1.0.0.beta.1 vs README.md in jsonb_accessor-1.0.0.beta.2

- old
+ new

@@ -1,34 +1,35 @@ # JSONb Accessor -[![Gem Version](https://badge.fury.io/rb/jsonb_accessor.svg)](http://badge.fury.io/rb/jsonb_accessor) [![Build Status](https://travis-ci.org/devmynd/jsonb_accessor.svg)](https://travis-ci.org/devmynd/jsonb_accessor) +Created by [<img src="https://raw.githubusercontent.com/devmynd/jsonb_accessor/master/devmynd-logo.png" alt="DevMynd Logo" />](https://www.devmynd.com/) [![Gem Version](https://badge.fury.io/rb/jsonb_accessor.svg)](http://badge.fury.io/rb/jsonb_accessor) [![Build Status](https://travis-ci.org/devmynd/jsonb_accessor.svg)](https://travis-ci.org/devmynd/jsonb_accessor) <img src="https://raw.githubusercontent.com/devmynd/jsonb_accessor/master/json-bee.png" alt="JSONb Accessor Logo" align="right" /> Adds typed `jsonb` backed fields as first class citizens to your `ActiveRecord` models. This gem is similar in spirit to [HstoreAccessor](https://github.com/devmynd/hstore_accessor), but the `jsonb` column in PostgreSQL has a few distinct advantages, mostly around nested documents and support for collections. It also adds generic scopes for querying `jsonb` columns. ## 1.0 Beta -This README reflects the 1.0 beta. Method names and interfaces may still change. +This README reflects the most recent 1.0 beta. Method names and interfaces may still change. ## Table of Contents * [Installation](#installation) * [Usage](#usage) * [Scopes](#scopes) * [Single-Table Inheritance](#single-table-inheritance) * [Dependencies](#dependencies) * [Validations](#validations) +* [Upgrading](#upgrading) * [Development](#development) * [Contributing](#contributing) ## Installation Add this line to your application's `Gemfile`: ```ruby -gem "jsonb_accessor" +gem "jsonb_accessor", "1.0.0.beta.2" ``` And then execute: $ bundle install @@ -248,9 +249,13 @@ ## Dependencies - ActiveRecord >= 5.0 - Postgres >= 9.4 (in order to use the [jsonb column type](http://www.postgresql.org/docs/9.4/static/datatype-json.html)). + +## Upgrading + +See the [upgrade guide](UPGRADE_GUIDE.md). ## Development After checking out the repo, run `bin/setup` to install dependencies (make sure postgres is running first).