Skip to content

Commit 6156edf

Browse files
committed
fixup! master -> main
1 parent dde5c30 commit 6156edf

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/jazzy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Jazzy
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
77
branches: ['*']
88

.github/workflows/pod_lib_lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: pod lib lint
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
77
branches: ['*']
88

.github/workflows/swiftlint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: SwiftLint
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
77
branches: ['*']
88

.github/workflows/swiftpm.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: SwiftPM
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
77
branches: ['*']
88

.github/workflows/xcodebuild.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: xcodebuild
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
77
branches: ['*']
88

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Master
1+
## Main
22

33
##### Breaking
44

Dangerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ has_test_changes = !git.modified_files.grep(/Tests/).empty?
88

99
# Add a CHANGELOG entry for app changes
1010
if !git.modified_files.include?("CHANGELOG.md") && has_app_changes
11-
fail("Please include a CHANGELOG entry. \nYou can find it at [CHANGELOG.md](https://github.com/jpsim/SourceKitten/blob/master/CHANGELOG.md).")
11+
fail("Please include a CHANGELOG entry. \nYou can find it at [CHANGELOG.md](https://github.com/jpsim/SourceKitten/blob/main/CHANGELOG.md).")
1212
message "Note, we hard-wrap at 80 chars and use 2 spaces after the last line."
1313
end
1414

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ get_version:
116116

117117
set_version:
118118
$(eval NEW_VERSION := $(filter-out $@,$(MAKECMDGOALS)))
119-
@sed -i '' 's/## Master/## $(NEW_VERSION)/g' CHANGELOG.md
119+
@sed -i '' 's/## Main/## $(NEW_VERSION)/g' CHANGELOG.md
120120
@sed 's/__VERSION__/$(NEW_VERSION)/g' script/Version.swift.template > Source/SourceKittenFramework/Version.swift
121121

122122
%:

0 commit comments

Comments
 (0)