diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5d02000..e7ca613 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.1" + ".": "0.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8370947..68ba870 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.7.0 (2026-07-31) + +Full Changelog: [v0.6.1...v0.7.0](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.6.1...v0.7.0) + +### Features + +* **api:** add complete reply extraction, rich response contracts, and compatible typed account outcomes ([#28](https://github.com/Xquik-dev/x-twitter-scraper-ruby/pull/28)) ([f638d05](https://github.com/Xquik-dev/x-twitter-scraper-ruby/commit/f638d05a1a633c223f2683a64abc1dbab233af6a)) + ## 0.6.1 (2026-07-30) Full Changelog: [v0.6.0...v0.6.1](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.6.0...v0.6.1) diff --git a/Gemfile.lock b/Gemfile.lock index 5211ada..3968097 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -11,7 +11,7 @@ GIT PATH remote: . specs: - x-twitter-scraper (0.6.1) + x-twitter-scraper (0.7.0) base64 cgi connection_pool diff --git a/README.md b/README.md index d3cf8a8..b0bde5c 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Add the gem to your `Gemfile`: ```ruby -gem "x-twitter-scraper", "~> 0.6.1" +gem "x-twitter-scraper", "~> 0.7.0" ``` diff --git a/lib/x_twitter_scraper/version.rb b/lib/x_twitter_scraper/version.rb index 5ba316a..51969bc 100644 --- a/lib/x_twitter_scraper/version.rb +++ b/lib/x_twitter_scraper/version.rb @@ -5,5 +5,5 @@ # frozen_string_literal: true module XTwitterScraper - VERSION = "0.6.1" + VERSION = "0.7.0" end