Skip to content

Commit 89ea314

Browse files
committed
Update main branch name
1 parent 84c983d commit 89ea314

7 files changed

+44
-26
lines changed

.github/ISSUE_TEMPLATE.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ visual issues.]
2222

2323
## Environment details:
2424

25-
* OS: [Enter operating system / version here]
26-
* Ruby version (`ruby -v`): [Enter output of `ruby -v`]
27-
* YARD version (`yard -v`): [Enter output of `yard -v`]
28-
* Relevant software dependency/versions:
29-
* [Any 3rd party libs required to reproduce, omit if none]
25+
- OS: [Enter operating system / version here]
26+
- Ruby version (`ruby -v`): [Enter output of `ruby -v`]
27+
- YARD version (`yard -v`): [Enter output of `yard -v`]
28+
- Relevant software dependency/versions:
29+
- [Any 3rd party libs required to reproduce, omit if none]
3030

3131
I have read the [Contributing Guide][contrib].
3232

33-
[contrib]: https://github.com/lsegal/yard/blob/master/CONTRIBUTING.md
33+
[contrib]: https://github.com/lsegal/yard/blob/main/CONTRIBUTING.md

.github/PULL_REQUEST_TEMPLATE.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Describe your pull request and problem statement here.
44

55
# Completed Tasks
66

7-
* [ ] I have read the [Contributing Guide][contrib].
8-
* [ ] The pull request is complete (implemented / written).
9-
* [ ] Git commits have been cleaned up (squash WIP / revert commits).
10-
* [ ] I wrote tests and ran `bundle exec rake` locally (if code is attached to PR).
7+
- [ ] I have read the [Contributing Guide][contrib].
8+
- [ ] The pull request is complete (implemented / written).
9+
- [ ] Git commits have been cleaned up (squash WIP / revert commits).
10+
- [ ] I wrote tests and ran `bundle exec rake` locally (if code is attached to PR).
1111

12-
[contrib]: https://github.com/lsegal/yard/blob/master/CONTRIBUTING.md
12+
[contrib]: https://github.com/lsegal/yard/blob/main/CONTRIBUTING.md

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# master
1+
# main
22

33
# 0.9.25 - May 3rd, 2020
44

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ If you believe you have found a bug, please include a few things in your report:
4242
if the behavior is intentional or not.
4343

4444
Finally, please **DO NOT** submit a report that states a feature simply
45-
*"does not work"* without any additional information in the report. Consider
45+
_"does not work"_ without any additional information in the report. Consider
4646
the issue from the maintainer's perspective: in order to fix your bug, we
4747
need to drill down to the broken line of code, and in order to do this,
4848
we must be able to reproduce the issue on our end to find that line of
@@ -132,7 +132,7 @@ help handle day-to-day operations, such as releases, bug fixes, and triage.
132132
You can do some of this as a non-maintainer too, but if you like this project,
133133
we can always use more hands on deck!
134134

135-
[code]: https://github.com/lsegal/yard/blob/master/CODE_OF_CONDUCT.md
135+
[code]: https://github.com/lsegal/yard/blob/main/CODE_OF_CONDUCT.md
136136
[issues]: http://github.com/lsegal/yard/issues
137137
[commit]: http://chris.beams.io/posts/git-commit/
138138
[pr]: https://help.github.com/articles/using-pull-requests/

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ group :development do
77
gem 'rdoc'
88
gem 'json'
99
gem 'simplecov'
10-
gem 'samus', '~> 3.0.8', :require => false
10+
gem 'samus', '~> 3.0.9', :require => false
1111
gem 'coveralls', :require => false
1212
end
1313

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Documentation](https://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://rubydoc.org/gems/yard/frames)
66

77
[![Gem Version](https://badge.fury.io/rb/yard.svg)](http://github.com/lsegal/yard/releases)
8-
[![Build Status](https://travis-ci.org/lsegal/yard.svg?branch=master)](https://travis-ci.org/lsegal/yard)
8+
[![Build Status](https://travis-ci.org/lsegal/yard.svg?branch=main)](https://travis-ci.org/lsegal/yard)
99
[![Coverage Status](https://coveralls.io/repos/github/lsegal/yard/badge.svg)](https://coveralls.io/github/lsegal/yard)
1010
[![License](https://img.shields.io/badge/license-MIT-yellowgreen.svg)](#license)
1111

samus.json

+28-10
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,41 @@
22
"actions": [
33
{
44
"action": "fs-sedfiles",
5-
"files": ["lib/*/version.rb"],
5+
"files": [
6+
"lib/*/version.rb"
7+
],
68
"arguments": {
79
"search": "VERSION = ['\"](.+?)['\"]",
810
"replace": "VERSION = '$version'"
911
}
1012
},
1113
{
1214
"action": "chmod-files",
13-
"files": ["**/*,644", "bin/*,755"]
15+
"files": [
16+
"**/*,644",
17+
"bin/*,755"
18+
]
1419
},
1520
{
1621
"action": "changelog-rotate",
17-
"files": ["CHANGELOG.md"],
22+
"files": [
23+
"CHANGELOG.md"
24+
],
1825
"arguments": {
1926
"title_format": "$version - %B %-d$day_nth, %Y"
2027
}
2128
},
2229
{
2330
"action": "git-commit",
24-
"files": ["CHANGELOG.md", "lib/*/version.rb"]
31+
"files": [
32+
"CHANGELOG.md",
33+
"lib/*/version.rb"
34+
]
2535
},
2636
{
2737
"action": "git-merge",
2838
"arguments": {
29-
"branch": "master"
39+
"branch": "main"
3040
}
3141
},
3242
{
@@ -37,32 +47,40 @@
3747
},
3848
{
3949
"action": "archive-git-full",
40-
"files": ["git.tgz"],
50+
"files": [
51+
"git.tgz"
52+
],
4153
"publish": [
4254
{
4355
"action": "git-push",
4456
"credentials": "lsegal.github.ssh",
4557
"arguments": {
4658
"remotes": "origin",
47-
"refs": "master v$version"
59+
"refs": "main v$version"
4860
}
4961
}
5062
]
5163
},
5264
{
5365
"action": "gem-build",
54-
"files": ["*.gemspec"],
66+
"files": [
67+
"*.gemspec"
68+
],
5569
"publish": [
5670
{
5771
"action": "gem-push",
58-
"files": ["*.gem"],
72+
"files": [
73+
"*.gem"
74+
],
5975
"credentials": "lsegal.rubygems"
6076
}
6177
]
6278
},
6379
{
6480
"action": "changelog-parse",
65-
"files": ["CHANGELOG.md"],
81+
"files": [
82+
"CHANGELOG.md"
83+
],
6684
"publish": [
6785
{
6886
"action": "github-release",

0 commit comments

Comments
 (0)