Skip to content

Commit 631d6da

Browse files
committed
Renamed master to main
1 parent a23f7be commit 631d6da

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ before_install:
7474
- git fetch --unshallow
7575
# download latest utPLSQL release
7676
#- curl -LOk $(curl --silent https://api.github.com/repos/utPLSQL/utPLSQL/releases/latest | awk '/browser_download_url/ { print $2 }' | grep ".zip" | sed 's/"//g')
77-
- git clone --depth=1 --branch=${SELFTESTING_BRANCH:-master} https://github.com/utPLSQL/utPLSQL.git $UTPLSQL_DIR
77+
- git clone --depth=1 --branch=${SELFTESTING_BRANCH:-main} https://github.com/utPLSQL/utPLSQL.git $UTPLSQL_DIR
7878
# download latest utPLSQL-cli release
7979
- curl -Lk -o utPLSQL-cli.zip https://github.com/utPLSQL/utPLSQL-cli/releases/download/v${UTPLSQL_CLI_VERSION}/utPLSQL-cli.zip
8080

.travis/push_docs_to_github_io.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Required ENV Variables
1616
LATEST_DOCS_BRANCH="develop"
1717
GITHUB_IO_REPO='utPLSQL/utPLSQL.github.io'
18-
GITHUB_IO_BRANCH='master'
18+
GITHUB_IO_BRANCH='main'
1919

2020
# TRAVIS_* variables are set by travis directly and only need to be if testing externally
2121

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ development/install.sh
107107

108108
You now have the following:
109109
- sources from `develop` branch of your fork of utPLSQL repository in `utPLSQL/ut3_latest_release` directory
110-
- sources from `master` branch of utPLSQL/utPLSQL repository in `utPLSQL/ut3_latest_release` directory
110+
- sources from `main` branch of utPLSQL/utPLSQL repository in `utPLSQL/ut3_latest_release` directory
111111
- binaries of `utplsql-cli` in `utPLSQL/utPLSQL-cli` directory
112112
- database users created
113113
- your current branch of utPLSQL deployed into `ut3` schema

development/refresh_sources.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ git rev-parse && cd "$(git rev-parse --show-cdup)"
55

66
. development/env.sh
77

8-
# remove sub-direcotry containing master branch shallow copy
8+
# remove sub-direcotry containing main branch shallow copy
99
rm -rf ${UTPLSQL_DIR:-utPLSQL_latest_release}
10-
# clone utPLSQL master branch from upstream into utPLSQL sub-directory of your project
11-
git clone --depth=1 --branch=${SELFTESTING_BRANCH:-master} https://github.com/utPLSQL/utPLSQL.git ${UTPLSQL_DIR:-utPLSQL_latest_release}
10+
# clone utPLSQL main branch from upstream into utPLSQL sub-directory of your project
11+
git clone --depth=1 --branch=${SELFTESTING_BRANCH:-main} https://github.com/utPLSQL/utPLSQL.git ${UTPLSQL_DIR:-utPLSQL_latest_release}
1212

1313
rm -rf utPLSQL-cli/*
1414
# download latest release version of utPLSQL-cli

development/releasing.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ This step is performed, to confirm that the update of versions works properly.
88
- create release branch from development branch and make sure to name the release branch: `release/vX.Y.Z`
99
- update, commit and push at least one file change in the release branch, to kickoff a Travis build
1010
- wait for th build to complete successfully
11-
- merge the release branch to master and wait for master build to complete successfully (do not use Squash/rebase for merge operation)
12-
- create a Github release from the master branch using [github releases page](https://github.com/utPLSQL/utPLSQL/releases) and populate release description using information found on the issues and pull requests since previous release.
11+
- merge the release branch to main and wait for main build to complete successfully (do not use Squash/rebase for merge operation)
12+
- create a Github release from the main branch using [github releases page](https://github.com/utPLSQL/utPLSQL/releases) and populate release description using information found on the issues and pull requests since previous release.
1313
To find issues closed after certain date use [advanced filters](https://help.github.com/articles/searching-issues-and-pull-requests/#search-by-open-or-closed-state).
1414
Example: [`is:issue closed:>2018-07-22`](https://github.com/utPLSQL/utPLSQL/issues?utf8=%E2%9C%93&q=is%3Aissue+closed%3A%3E2018-07-22+)
15-
- After A build was completed on a TAG (github release) was successful, merge master branch back into develop branch.
16-
- At this point, master branch and release tag should be at the same commit version and artifacts should be uploaded into Github release.
15+
- After A build was completed on a TAG (github release) was successful, merge main branch back into develop branch.
16+
- At this point, main branch and release tag should be at the same commit version and artifacts should be uploaded into Github release.
1717
- After develop branch was built, update version number in `VERSION` file to represent next planned release version.
1818
- Clone `utplsql.githug.io` project and add a new announcement about next version being released in `_posts`. Use previous announcements as a template. Make sure to set date, time and post title properly.
1919

2020
The following will happen:
2121
- build executed on branch `release/vX.Y.Z-[something]` updates files `sonar-project.properties`, `VERSION` with project version derived from the release branch name
2222
- changes to those two files are committed and pushed back to release branch by Travis
23-
- builds on master branch are **not getting executed**
23+
- builds on main branch are **not getting executed**
2424
- when a Github release is created, a new tag is added in on the repository and a tag build is executed
2525
- the documentation for new release is published on `utplsql.github.io` and installation archives are added to the tag.
2626

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![chat](http://img.shields.io/badge/slack-team--chat-blue.svg)](https://join.slack.com/t/utplsql/shared_invite/zt-d6zor80g-WWqAhbLWioJZUtLYeXetzA)
99
[![twitter](https://img.shields.io/twitter/follow/utPLSQL.svg?style=social&label=Follow)](https://twitter.com/utPLSQL)
1010

11-
[![build](https://img.shields.io/travis/utPLSQL/utPLSQL/master.svg?label=master%20branch)](https://travis-ci.org/utPLSQL/utPLSQL)
11+
[![build](https://img.shields.io/travis/utPLSQL/utPLSQL/main.svg?label=main%20branch)](https://travis-ci.org/utPLSQL/utPLSQL)
1212
[![build](https://img.shields.io/travis/utPLSQL/utPLSQL/develop.svg?label=develop%20branch)](https://travis-ci.org/utPLSQL/utPLSQL)
1313
[![sonar](https://sonarcloud.io/api/project_badges/measure?project=utPLSQL&metric=sqale_rating)](https://sonarcloud.io/dashboard/index?id=utPLSQL)
1414
[![Coveralls coverage](https://coveralls.io/repos/github/utPLSQL/utPLSQL/badge.svg?branch=develop)](https://coveralls.io/github/utPLSQL/utPLSQL?branch=develop)

0 commit comments

Comments
 (0)