Skip to content

Commit 83b4585

Browse files
committed
Rename master branch to main
And remove all references to master (even unrelated ones). Everyone with a local clone will need to update it; [instructions](https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/managing-branches-in-your-repository/renaming-a-branch#updating-a-local-clone-after-a-branch-name-changes): ``` sh git branch -m master main git fetch origin git branch -u origin/main main git remote set-head origin -a ```
1 parent 6fdae2b commit 83b4585

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ updatecheck_deps: pgtap-version-$(UPDATE_FROM) test/sql/update.sql
470470
# pg_regress --launcher not supported prior to 9.1
471471
# There are some other failures in 9.1 and 9.2 (see https://travis-ci.org/decibel/pgtap/builds/358206497).
472472
# TODO: find something that can generically compare majors (ie: GE91 from
473-
# https://github.com/decibel/pgxntool/blob/master/base.mk).
473+
# https://github.com/decibel/pgxntool/blob/0.1.10/base.mk).
474474
updatecheck_setup: updatecheck_deps
475475
@if echo $(VERSION) | grep -qE "8[.]|9[.][012]"; then echo "updatecheck is not supported prior to 9.3"; exit 1; fi
476476
$(eval SETUP_SCH = test/schedule/update.sch)

contrib/pgtap.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Release: 1%{?dist}
55
Group: Applications/Databases
66
License: PostgreSQL
77
URL: https://pgtap.org/
8-
Source0: https://master.pgxn.org/dist/pgtap/%{version}/pgtap-%{version}.zip
8+
Source0: https://api.pgxn.org/dist/pgtap/%{version}/pgtap-%{version}.zip
99
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
1010
Provides: %{name}
1111
Provides: %{name}-core

release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Here are the steps to take to make a release of pgTAP:
7575

7676
+ Commit the changes, but don't push them yet.
7777

78-
* Go back to the `master` branch and proofread the additions to the `Changes`
78+
* Go back to the `main` branch and proofread the additions to the `Changes`
7979
file since the last release. Make sure all relevant changes are recorded
8080
there, and that any typos or formatting errors are corrected.
8181

tools/util.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Adapted from https://github.com/decibel/db_tools/blob/master/lib/util.sh
1+
# Adapted from https://github.com/decibel/db_tools/blob/0.1.10/lib/util.sh
22

33
ME=`basename $0`
44

0 commit comments

Comments
 (0)