README.md in goldiloader-0.0.3 vs README.md in goldiloader-0.0.4
- old
+ new
@@ -48,11 +48,11 @@
# SELECT * FROM posts WHERE blog_id IN (1,2,3,4,5)
```
Whoa! It automatically loaded all of the posts for our five blogs in a single database query without specifying any eager loads! Goldiloader assumes that you'll access all models loaded from a query in a uniform way. The first time you traverse an association on any of the models it will eager load the association for all the models. It even works with arbitrary nesting of associations.
-Read more about the motivation for the Goliloader in this [blog post](http://www.salsify.com/blog/automatic-eager-loading-rails/1869).
+Read more about the motivation for the Goldiloader in this [blog post](http://www.salsify.com/blog/automatic-eager-loading-rails/).
## Installation
Add this line to your application's Gemfile:
@@ -125,9 +125,13 @@
```
## Status
This gem is tested with Rails 3.2, 4.0, and 4.1 using MRI 1.9.3, 2.0.0, 2.1.0 and JRuby in 1.9 mode. [Salsify](http://salsify.com) is not yet using this gem in production so proceed with caution. Let us know if you find any issues or have any other feedback.
+
+## Change log
+
+See the [change log](https://github.com/salsify/goldiloader/blob/master/CHANGELOG.md).
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)