diff --git a/CHANGELOG.md b/CHANGELOG.md index 3503b0a..57110aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ ## [Unreleased] +## [0.8.0] - 2023-11-02 + +### Breaking + +- Renamed `as_json` to `to_h` details outlined in https://github.com/chadwilken/tiptap-ruby/issues/10. + ## [0.7.0] - 2023-11-02 ### Breaking diff --git a/Gemfile.lock b/Gemfile.lock index e81e0a7..41a0749 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - tiptap-ruby (0.7.0) + tiptap-ruby (0.8.0) actionview (>= 6.0) activesupport (>= 6.0) diff --git a/lib/tip_tap/version.rb b/lib/tip_tap/version.rb index 8940848..90b271c 100644 --- a/lib/tip_tap/version.rb +++ b/lib/tip_tap/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module TipTap - VERSION = "0.7.0" + VERSION = "0.8.0" end