Skip to content

Commit f0300df

Browse files
authored
Merge branch 'master' into default_branch
2 parents b682866 + 0a43d8b commit f0300df

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@
55

66
# Change Log
77

8+
## v1.11.0
9+
10+
* 292087e Supress unneeded test output (#570)
11+
* 19dfe5e Add support for fetch options "--force/-f" and "--prune-tags/-P". (#563)
12+
* 018d919 Fix bug when grepping lines that contain numbers surrounded by colons (#566)
13+
* c04d16e remove from maintainer (#567)
14+
* 291ca09 Address command line injection in Git::Lib#fetch
15+
* 521b8e7 Release v1.10.2 (#561)
16+
17+
See https://github.com/ruby-git/ruby-git/releases/tag/v1.11.0
18+
819
## v1.10.2
920

1021
See https://github.com/ruby-git/ruby-git/releases/tag/v1.10.2

Gemfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1+
# frozen_string_literal: true
2+
13
source 'https://rubygems.org'
24

3-
gemspec :name => 'git'
5+
git 'https://github.com/lsegal/yard', branch: 'main' do
6+
gem 'yard'
7+
end
48

9+
gemspec name: 'git'

lib/git/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Git
22
# The current gem version
33
# @return [String] the current gem version.
4-
VERSION='1.10.2'
4+
VERSION='1.11.0'
55
end

0 commit comments

Comments
 (0)