Skip to content

Commit 9998f17

Browse files
committed
chore: use main instead of master
1 parent f52e39c commit 9998f17

17 files changed

Lines changed: 34 additions & 30 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
### UNRELEASED
4+
5+
* (patch) Update `changelog_uri` in gemspec
6+
37
### 8.1.2
48

59
* Allow running RSpec with `--force-color` (and the default Split by Test Examples)

knapsack_pro.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
1515
spec.license = 'MIT'
1616
spec.metadata = {
1717
'bug_tracker_uri' => 'https://github.com/KnapsackPro/knapsack_pro-ruby/issues',
18-
'changelog_uri' => 'https://github.com/KnapsackPro/knapsack_pro-ruby/blob/master/CHANGELOG.md',
18+
'changelog_uri' => 'https://github.com/KnapsackPro/knapsack_pro-ruby/blob/main/CHANGELOG.md',
1919
'documentation_uri' => 'https://docs.knapsackpro.com/knapsack_pro-ruby/guide/',
2020
'homepage_uri' => 'https://knapsackpro.com',
2121
'source_code_uri' => 'https://github.com/KnapsackPro/knapsack_pro-ruby'

spec/fixtures/vcr_cassettes/api/v1/build_distributions/subset/invalid_test_suite_token.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/fixtures/vcr_cassettes/api/v1/build_distributions/subset/success.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/fixtures/vcr_cassettes/api/v1/build_subsets/create/invalid_test_suite_token.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/fixtures/vcr_cassettes/api/v1/build_subsets/create/success.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

spec/integration/api/build_distributions_subset_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
KnapsackPro::Client::API::V1::BuildDistributions.subset(
99
cache_read_attempt: true,
1010
commit_hash: 'abcdefg',
11-
branch: 'master',
11+
branch: 'main',
1212
node_total: '2',
1313
node_index: '1',
1414
test_files: [

spec/integration/api/build_subsets_create_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
let(:action) do
88
KnapsackPro::Client::API::V1::BuildSubsets.create(
99
commit_hash: 'abcdefg',
10-
branch: 'master',
10+
branch: 'main',
1111
node_total: '2',
1212
node_index: '1',
1313
test_files: [

spec/knapsack_pro/config/ci/app_veyor_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
subject { described_class.new.branch }
5050

5151
context 'when the environment exists' do
52-
let(:env) { { 'APPVEYOR_REPO_BRANCH' => 'master' } }
53-
it { should eql 'master' }
52+
let(:env) { { 'APPVEYOR_REPO_BRANCH' => 'main' } }
53+
it { should eql 'main' }
5454
end
5555

5656
context "when the environment doesn't exist" do

spec/knapsack_pro/config/ci/cirrus_ci_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@
6363
subject { described_class.new.branch }
6464

6565
context 'when the environment exists' do
66-
let(:env) { { 'CIRRUS_BRANCH' => 'master' } }
67-
it { should eql 'master' }
66+
let(:env) { { 'CIRRUS_BRANCH' => 'main' } }
67+
it { should eql 'main' }
6868
end
6969

7070
context "when the environment doesn't exist" do

0 commit comments

Comments
 (0)