git 4.1.0 → 4.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/git/log.rb CHANGED
@@ -1,9 +1,14 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Git
4
- # Builds and executes a `git log` query.
4
+ # Builds and executes a `git log` query
5
5
  #
6
6
  # This class provides a fluent interface for building complex `git log` queries.
7
+ #
8
+ # Queries default to returning 30 commits; call {#max_count} with `:all` to
9
+ # return every matching commit. Calling {#all} adds the `--all` flag to include
10
+ # all refs in the search but does not change the number of commits returned.
11
+ #
7
12
  # The query is lazily executed when results are requested either via the modern
8
13
  # `#execute` method or the deprecated Enumerable methods.
9
14
  #
data/lib/git/version.rb CHANGED
@@ -3,5 +3,5 @@
3
3
  module Git
4
4
  # The current gem version
5
5
  # @return [String] the current gem version.
6
- VERSION = '4.1.0'
6
+ VERSION = '4.1.2'
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Chacon and others
@@ -250,8 +250,11 @@ files:
250
250
  - ".rubocop.yml"
251
251
  - ".rubocop_todo.yml"
252
252
  - ".yardopts"
253
+ - AI_POLICY.md
253
254
  - CHANGELOG.md
255
+ - CODE_OF_CONDUCT.md
254
256
  - CONTRIBUTING.md
257
+ - GOVERNANCE.md
255
258
  - Gemfile
256
259
  - LICENSE
257
260
  - MAINTAINERS.md
@@ -305,8 +308,8 @@ licenses:
305
308
  metadata:
306
309
  homepage_uri: http://github.com/ruby-git/ruby-git
307
310
  source_code_uri: http://github.com/ruby-git/ruby-git
308
- changelog_uri: https://rubydoc.info/gems/git/4.1.0/file/CHANGELOG.md
309
- documentation_uri: https://rubydoc.info/gems/git/4.1.0
311
+ changelog_uri: https://rubydoc.info/gems/git/4.1.2/file/CHANGELOG.md
312
+ documentation_uri: https://rubydoc.info/gems/git/4.1.2
310
313
  rubygems_mfa_required: 'true'
311
314
  rdoc_options: []
312
315
  require_paths: