Skip to content

Commit

Permalink
Release 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
shioyama committed Feb 25, 2017
1 parent 7559637 commit f85dd7b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Mobility Changelog

## 0.1.2
## 0.1

### 0.1.3

* Add homepage to gemspec
* Pass backend class as context to `translates`
([adf93e3c6bb314b73fbd43b221819310a1407c4d](https://github.com/shioyama/mobility/commit/adf93e3c6bb314b73fbd43b221819310a1407c4d))

### 0.1.2

* Fix issues with querying in ActiveRecord jsonb and hstore backends
([527908d9317daee6bf91e3e1a188fb64365f7bab](https://github.com/shioyama/mobility/commit/527908d9317daee6bf91e3e1a188fb64365f7bab)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ features, including:
Add this line to your application's Gemfile:

```ruby
gem 'mobility', '~> 0.1.2'
gem 'mobility', '~> 0.1.3'
```

To translate attributes on a model, you must include (or extend) `Mobility`,
Expand Down Expand Up @@ -567,7 +567,7 @@ To this end, Mobility backends strictly enforce the rule that *no backend
should modify a parent class in any way which would interfere with other
backends operating on the same class*. This is done using a heavy dose of
metaprogramming, details of which can be found in the [API
documentation](http://www.rubydoc.info/gems/mobility/0.1.1) and in the actual code.
documentation](http://www.rubydoc.info/gems/mobility/0.1.3) and in the actual code.

In practice, this means that you can use different backends for different
attributes *on the same class* without any conflict, e.g. (assuming we
Expand Down Expand Up @@ -647,7 +647,7 @@ end

For details on how to define a backend class, see the {Mobility::Backend}
module and other classes defined in the [API
documentation](http://www.rubydoc.info/gems/mobility/0.1.1).
documentation](http://www.rubydoc.info/gems/mobility/0.1.3).

### Testing Backends

Expand Down Expand Up @@ -692,7 +692,7 @@ particular implementations.
## More Information

- [Github repository](https://www.github.com/shioyama/mobility)
- [API documentation](http://www.rubydoc.info/gems/mobility/0.1.1)
- [API documentation](http://www.rubydoc.info/gems/mobility/0.1.3)

## License

Expand Down
2 changes: 1 addition & 1 deletion lib/mobility/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Mobility
VERSION = "0.1.2"
VERSION = "0.1.3"
end

0 comments on commit f85dd7b

Please sign in to comment.