diff --git a/.gitignore b/.gitignore index b256a90..ce9ff64 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,5 @@ /pkg/ /spec/reports/ /tmp/ - +Gemfile.lock rspec_examples.txt diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 466df71..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.0" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b839ec3 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +# Changelog + +## [0.2.0](https://github.com/somleng/cursor_paginator/compare/v0.1.0...v0.2.0) (2024-04-19) + + +### Features + +* Handle limits ([#3](https://github.com/somleng/cursor_paginator/issues/3)) ([3faf758](https://github.com/somleng/cursor_paginator/commit/3faf758eb282560f0321bdab44636d2937acb856)) diff --git a/Gemfile.lock b/Gemfile.lock deleted file mode 100644 index cec52e3..0000000 --- a/Gemfile.lock +++ /dev/null @@ -1,139 +0,0 @@ -PATH - remote: . - specs: - cursor_paginator (0.1.0) - activesupport (>= 3) - -GEM - remote: https://rubygems.org/ - specs: - activemodel (7.1.3.2) - activesupport (= 7.1.3.2) - activerecord (7.1.3.2) - activemodel (= 7.1.3.2) - activesupport (= 7.1.3.2) - timeout (>= 0.4.0) - activesupport (7.1.3.2) - base64 - bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) - connection_pool (>= 2.2.5) - drb - i18n (>= 1.6, < 2) - minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) - ast (2.4.2) - base64 (0.2.0) - bigdecimal (3.1.7) - coderay (1.1.3) - concurrent-ruby (1.2.3) - connection_pool (2.4.1) - diff-lcs (1.5.1) - drb (2.2.1) - i18n (1.14.4) - concurrent-ruby (~> 1.0) - json (2.7.2) - language_server-protocol (3.17.0.3) - method_source (1.1.0) - minitest (5.22.3) - mutex_m (0.2.0) - parallel (1.24.0) - parser (3.3.0.5) - ast (~> 2.4.1) - racc - pry (0.14.2) - coderay (~> 1.1) - method_source (~> 1.0) - racc (1.7.3) - rack (3.0.10) - rainbow (3.1.1) - rake (13.2.1) - regexp_parser (2.9.0) - rexml (3.2.6) - rspec (3.13.0) - rspec-core (~> 3.13.0) - rspec-expectations (~> 3.13.0) - rspec-mocks (~> 3.13.0) - rspec-core (3.13.0) - rspec-support (~> 3.13.0) - rspec-expectations (3.13.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.13.0) - rspec-mocks (3.13.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.13.0) - rspec-support (3.13.1) - rubocop (1.63.2) - json (~> 2.3) - language_server-protocol (>= 3.17.0) - parallel (~> 1.10) - parser (>= 3.3.0.2) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.31.1, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.31.2) - parser (>= 3.3.0.4) - rubocop-capybara (2.20.0) - rubocop (~> 1.41) - rubocop-factory_bot (2.25.1) - rubocop (~> 1.41) - rubocop-minitest (0.35.0) - rubocop (>= 1.61, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-performance (1.21.0) - rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rails (2.24.1) - activesupport (>= 4.2.0) - rack (>= 1.1) - rubocop (>= 1.33.0, < 2.0) - rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rails-omakase (1.0.0) - rubocop - rubocop-minitest - rubocop-performance - rubocop-rails - rubocop-rspec (2.29.1) - rubocop (~> 1.40) - rubocop-capybara (~> 2.17) - rubocop-factory_bot (~> 2.22) - rubocop-rspec_rails (~> 2.28) - rubocop-rspec_rails (2.28.3) - rubocop (~> 1.40) - ruby-progressbar (1.13.0) - sqlite3 (1.7.3-aarch64-linux) - sqlite3 (1.7.3-arm-linux) - sqlite3 (1.7.3-arm64-darwin) - sqlite3 (1.7.3-x86-linux) - sqlite3 (1.7.3-x86_64-darwin) - sqlite3 (1.7.3-x86_64-linux) - timeout (0.4.1) - tzinfo (2.0.6) - concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) - -PLATFORMS - aarch64-linux - arm-linux - arm64-darwin - x86-linux - x86_64-darwin - x86_64-linux - -DEPENDENCIES - activerecord - cursor_paginator! - pry - rake (~> 13.2) - rspec - rubocop-performance - rubocop-rails-omakase - rubocop-rspec - sqlite3 (~> 1.7) - -BUNDLED WITH - 2.5.9 diff --git a/lib/cursor_paginator/version.rb b/lib/cursor_paginator/version.rb index 0d2f520..3dc0adb 100644 --- a/lib/cursor_paginator/version.rb +++ b/lib/cursor_paginator/version.rb @@ -1,3 +1,3 @@ module CursorPaginator - VERSION = "0.1.0" + VERSION = "0.2.0" end