git 1.19.0 → 1.19.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 41e2cebd7f83840b2e72176aa0d0a9f7b2441dbbe26f916b795877037bc82b6c
4
- data.tar.gz: 03d373beb11219313117e419afdfce5be3ee225fd2f69dbee8d2e75b76ff7f10
3
+ metadata.gz: 6f12803468275850ae680a4df2719890e8f84de95258f30dc898f817c7155d44
4
+ data.tar.gz: d24540a708538775d2ff1af495f04e7f42a297aaf790d0fe7b65ad71fe402550
5
5
  SHA512:
6
- metadata.gz: f0eb02c8af807265598c6e1fce6910d46dc6de257b4874e5957a65fd5788457eb084a4bec94b9e20ab69f05e4dff1d8bd7704f5a5af80679e0ab0ed819f3ef06
7
- data.tar.gz: 78e566642f10ce5d18ff7112e864a9b1e4b6347cb4445abe5d1e0dea2e6f4b316e7218b896fdef39e17efdb928a0b1a2a2d169b640675f6d282f2537f99dfc86
6
+ metadata.gz: 15a09f75d84fb1ff7547403eb36c7342bee11fc1a23cf86e5eae224a2494da0e0bc60bf288c04924c87bdf6736f156f4d98f0468cf815d03b3291509ab234e8d
7
+ data.tar.gz: 7fe2633018ec2e38805b987271cc033d023b1a32b429cf2f75e88d1ac1c86c913689fc46806ea49c38fce66005215b05fc700ca3adc925afd0b3dcd3fefdc091
data/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@
5
5
 
6
6
  # Change Log
7
7
 
8
+ ## v1.19.1 (2024-01-13)
9
+
10
+ [Full Changelog](https://github.com/ruby-git/ruby-git/compare/v1.19.0..v1.19.1)
11
+
12
+ Changes since v1.19.0:
13
+
14
+ * f97c57c Announce the 2.0.0 pre-release (#682)
15
+
8
16
  ## v1.19.0 (2023-12-28)
9
17
 
10
18
  [Full Changelog](https://github.com/ruby-git/ruby-git/compare/v1.18.0..v1.19.0)
data/README.md CHANGED
@@ -5,11 +5,41 @@
5
5
 
6
6
  # The Git Gem
7
7
 
8
- The Git Gem provides an API that can be used to create, read, and manipulate
9
- Git repositories by wrapping system calls to the `git` binary. The API can be
10
- used for working with Git in complex interactions including branching and
11
- merging, object inspection and manipulation, history, patch generation and
12
- more.
8
+ [![Gem Version](https://badge.fury.io/rb/git.svg)](https://badge.fury.io/rb/git)
9
+ [![Documentation](https://img.shields.io/badge/Documentation-Latest-green)](https://rubydoc.info/gems/git/)
10
+ [![Change Log](https://img.shields.io/badge/CHANGELOG-Latest-green)](https://rubydoc.info/gems/git/file/CHANGELOG.md)
11
+ [![Build Status](https://github.com/ruby-git/ruby-git/workflows/CI/badge.svg?branch=master)](https://github.com/ruby-git/ruby-git/actions?query=workflow%3ACI)
12
+ [![Code Climate](https://codeclimate.com/github/ruby-git/ruby-git.png)](https://codeclimate.com/github/ruby-git/ruby-git)
13
+
14
+ The [git gem](https://rubygems.org/gems/git) provides an API that can be used to
15
+ create, read, and manipulate Git repositories by wrapping system calls to the `git`
16
+ command line. The API can be used for working with Git in complex interactions
17
+ including branching and merging, object inspection and manipulation, history, patch
18
+ generation and more.
19
+
20
+ ## v2.0.0 pre-release
21
+
22
+ git 2.0.0 is available as a pre-release version for testing! Please give it a try.
23
+
24
+ **JRuby on Windows is not yet supported by the 2.x release line. Users running JRuby
25
+ on Windows should continue to use the 1.x release line.**
26
+
27
+ The changes coming in this major release include:
28
+
29
+ * Create a policy of supported Ruby versions to support only non-EOL Ruby versions
30
+ * Create a policy of supported Git CLI versions (released 2020-12-25)
31
+ * Update the required Ruby version to at least 3.0 (released 2020-07-27)
32
+ * Update the required Git command line version to at least 2.28
33
+ * Update how CLI commands are called to use the [process_executer](https://github.com/main-branch/process_executer)
34
+ gem which is built on top of [Kernel.spawn](https://ruby-doc.org/3.3.0/Kernel.html#method-i-spawn).
35
+ See [PR #617](https://github.com/ruby-git/ruby-git/pull/617) for more details
36
+ on the motivation for this implementation.
37
+
38
+ The tentative plan is to release `2.0.0` near the end of March 2024 depending on
39
+ the feedback received during the pre-release period.
40
+
41
+ The `master` branch will be used for `2.x` development. If needed, fixes for `1.x`
42
+ version will be done on the `v1` branch.
13
43
 
14
44
  ## Homepage
15
45
 
@@ -41,9 +71,6 @@ sudo gem install git
41
71
 
42
72
  ## Code Status
43
73
 
44
- * [![Build Status](https://github.com/ruby-git/ruby-git/workflows/CI/badge.svg?branch=master)](https://github.com/ruby-git/ruby-git/actions?query=workflow%3ACI)
45
- * [![Code Climate](https://codeclimate.com/github/ruby-git/ruby-git.png)](https://codeclimate.com/github/ruby-git/ruby-git)
46
- * [![Gem Version](https://badge.fury.io/rb/git.svg)](https://badge.fury.io/rb/git)
47
74
 
48
75
  ## Major Objects
49
76
 
data/git.gemspec CHANGED
@@ -9,17 +9,19 @@ Gem::Specification.new do |s|
9
9
  s.name = 'git'
10
10
  s.summary = 'An API to create, read, and manipulate Git repositories'
11
11
  s.description = <<~DESCRIPTION
12
- The Git Gem provides an API that can be used to create, read, and manipulate
13
- Git repositories by wrapping system calls to the `git` binary. The API can be
14
- used for working with Git in complex interactions including branching and
15
- merging, object inspection and manipulation, history, patch generation and
16
- more.
12
+ The git gem provides an API that can be used to
13
+ create, read, and manipulate Git repositories by wrapping system calls to the git
14
+ command line. The API can be used for working with Git in complex interactions
15
+ including branching and merging, object inspection and manipulation, history, patch
16
+ generation and more.
17
17
  DESCRIPTION
18
18
  s.version = Git::VERSION
19
19
 
20
+
20
21
  s.metadata['homepage_uri'] = s.homepage
21
22
  s.metadata['source_code_uri'] = s.homepage
22
- s.metadata['changelog_uri'] = 'http://rubydoc.info/gems/git/file.CHANGELOG.html'
23
+ s.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{s.name}/#{s.version}/file/CHANGELOG.md"
24
+ s.metadata['documentation_uri'] = "https://rubydoc.info/gems/#{s.name}/#{s.version}"
23
25
 
24
26
  s.require_paths = ['lib']
25
27
  s.required_ruby_version = '>= 2.3'
data/lib/git/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Git
2
2
  # The current gem version
3
3
  # @return [String] the current gem version.
4
- VERSION='1.19.0'
4
+ VERSION='1.19.1'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.19.0
4
+ version: 1.19.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Chacon and others
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-29 00:00:00.000000000 Z
11
+ date: 2024-01-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -171,11 +171,11 @@ dependencies:
171
171
  - !ruby/object:Gem::Version
172
172
  version: '0.9'
173
173
  description: |
174
- The Git Gem provides an API that can be used to create, read, and manipulate
175
- Git repositories by wrapping system calls to the `git` binary. The API can be
176
- used for working with Git in complex interactions including branching and
177
- merging, object inspection and manipulation, history, patch generation and
178
- more.
174
+ The git gem provides an API that can be used to
175
+ create, read, and manipulate Git repositories by wrapping system calls to the git
176
+ command line. The API can be used for working with Git in complex interactions
177
+ including branching and merging, object inspection and manipulation, history, patch
178
+ generation and more.
179
179
  email: schacon@gmail.com
180
180
  executables: []
181
181
  extensions: []
@@ -232,7 +232,8 @@ licenses:
232
232
  metadata:
233
233
  homepage_uri: http://github.com/ruby-git/ruby-git
234
234
  source_code_uri: http://github.com/ruby-git/ruby-git
235
- changelog_uri: http://rubydoc.info/gems/git/file.CHANGELOG.html
235
+ changelog_uri: https://rubydoc.info/gems/git/1.19.1/file/CHANGELOG.md
236
+ documentation_uri: https://rubydoc.info/gems/git/1.19.1
236
237
  post_install_message:
237
238
  rdoc_options: []
238
239
  require_paths:
@@ -249,7 +250,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
249
250
  version: '0'
250
251
  requirements:
251
252
  - git 1.6.0.0, or greater
252
- rubygems_version: 3.4.14
253
+ rubygems_version: 3.5.3
253
254
  signing_key:
254
255
  specification_version: 4
255
256
  summary: An API to create, read, and manipulate Git repositories