diff --git a/CHANGELOG.md b/CHANGELOG.md index 244502c..9928ab2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ -## [Unreleased] +## [2.1.0] - 2026-07-16 +- Add the `app_issues` resource (CRUD for `App::Issue`). - Fix: a to-one relationship serialized with `"data": null` (e.g. a charge line's `item`, or an included `barcode` on a product without one) now reads as nil, matching the present-with-null attribute semantics — instead of the diff --git a/Gemfile.lock b/Gemfile.lock index 98113db..c9a43dd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - booqable (2.0.0) + booqable (2.1.0) addressable (~> 2.8) cgi (~> 0.5) faraday (~> 2.13) diff --git a/lib/booqable/version.rb b/lib/booqable/version.rb index 11c62b5..0c0bbcf 100644 --- a/lib/booqable/version.rb +++ b/lib/booqable/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Booqable - VERSION = "2.0.0" + VERSION = "2.1.0" end