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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +35 -8
- data/git.gemspec +8 -6
- data/lib/git/version.rb +1 -1
- metadata +10 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6f12803468275850ae680a4df2719890e8f84de95258f30dc898f817c7155d44
|
|
4
|
+
data.tar.gz: d24540a708538775d2ff1af495f04e7f42a297aaf790d0fe7b65ad71fe402550
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
8
|
+
[](https://badge.fury.io/rb/git)
|
|
9
|
+
[](https://rubydoc.info/gems/git/)
|
|
10
|
+
[](https://rubydoc.info/gems/git/file/CHANGELOG.md)
|
|
11
|
+
[](https://github.com/ruby-git/ruby-git/actions?query=workflow%3ACI)
|
|
12
|
+
[](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
|
-
* [](https://github.com/ruby-git/ruby-git/actions?query=workflow%3ACI)
|
|
45
|
-
* [](https://codeclimate.com/github/ruby-git/ruby-git)
|
|
46
|
-
* [](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
|
|
13
|
-
Git repositories by wrapping system calls to the
|
|
14
|
-
used for working with Git in complex interactions
|
|
15
|
-
merging, object inspection and manipulation, history, patch
|
|
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'] =
|
|
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
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.
|
|
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:
|
|
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
|
|
175
|
-
Git repositories by wrapping system calls to the
|
|
176
|
-
used for working with Git in complex interactions
|
|
177
|
-
merging, object inspection and manipulation, history, patch
|
|
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:
|
|
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.
|
|
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
|