CHANGELOG.md in dato-0.7.10 vs CHANGELOG.md in dato-0.7.13
- old
+ new
@@ -1,4 +1,43 @@
+# 0.7.13
+
+Add option to pass a project's environment:
+
+```ruby
+require "dato"
+client = Dato::Site::Client.new("YOUR-API-KEY", environment: 'sandbox-foobar')
+```
+
+# 0.7.12
+
+Introduces `Dato::Utils::BuildModularBlock` class to help creating modular blocks.
+
+An example usage can be:
+
+```ruby
+description = [
+ Dato::Utils::BuildModularBlock.build(
+ item_type: "1235",
+ name: "Best dog in the world",
+ year: "2020",
+ picture: picture
+ )
+]
+
+record = client.items.create(
+ item_type: "1234", # model ID
+ name: "Gigio",
+ description: description
+)
+```
+
+Find more info [on the documentation](https://www.datocms.com/docs/content-management-api/resources/item/create).
+
+# 0.7.11 (not released)
+
+* Updated specs cassettes after `appeareance -> appearance` typo fix
+* Some style changes
+
# 0.7.10
* Fixed SEO title retrieval. Now it fallbacks to default SEO title is item title is blank
# 0.7.9