Skip to content

Commit 3cd616b

Browse files
committed
Renamed master to main branch
1 parent ecc4b40 commit 3cd616b

File tree

12 files changed

+23
-23
lines changed

12 files changed

+23
-23
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
- [ ] I made sure all projects build.
2222
- [ ] I updated pubspec.yaml with an appropriate new version according to the [pub versioning philosophy](https://dart.dev/tools/pub/versioning).
2323
- [ ] I updated CHANGELOG.md to add a description of the change.
24-
- [ ] I followed the style guide lines ([code style guide](https://github.com/Baseflow/flutter-geocoding/blob/master/CONTRIBUTING.md)).
24+
- [ ] I followed the style guide lines ([code style guide](https://github.com/Baseflow/flutter-geocoding/blob/main/CONTRIBUTING.md)).
2525
- [ ] I updated the relevant documentation.
26-
- [ ] I rebased onto current `master`.
26+
- [ ] I rebased onto current `main`.

.github/workflows/geocoding.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
name: geocoding
44

55
# Controls when the action will run. Triggers the workflow on push or pull request
6-
# events but only for the master branch
6+
# events but only for the main branch
77
on:
88
push:
9-
branches: [ master ]
9+
branches: [ main ]
1010
paths:
1111
- 'geocoding/**'
1212
pull_request:
13-
branches: [ master ]
13+
branches: [ main ]
1414
paths:
1515
- 'geocoding/**'
1616

.github/workflows/geocoding_android.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
name: geocoding_android
44

55
# Controls when the action will run. Triggers the workflow on push or pull request
6-
# events but only for the master branch
6+
# events but only for the main branch
77
on:
88
push:
9-
branches: [ master ]
9+
branches: [ main ]
1010
paths:
1111
- 'geocoding_android/**'
1212
pull_request:
13-
branches: [ master ]
13+
branches: [ main ]
1414
paths:
1515
- 'geocoding_android/**'
1616

.github/workflows/geocoding_ios.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
name: geocoding_ios
44

55
# Controls when the action will run. Triggers the workflow on push or pull request
6-
# events but only for the master branch
6+
# events but only for the main branch
77
on:
88
push:
9-
branches: [ master ]
9+
branches: [ main ]
1010
paths:
1111
- 'geocoding_ios/**'
1212
pull_request:
13-
branches: [ master ]
13+
branches: [ main ]
1414
paths:
1515
- 'geocoding_ios/**'
1616

.github/workflows/geocoding_platform_interface.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
name: geocoding_platform_interface
44

55
# Controls when the action will run. Triggers the workflow on push or pull request
6-
# events but only for the master branch
6+
# events but only for the main branch
77
on:
88
push:
9-
branches: [ master ]
9+
branches: [ main ]
1010
paths:
1111
- 'geocoding_platform_interface/**'
1212
pull_request:
13-
branches: [ master ]
13+
branches: [ main ]
1414
paths:
1515
- 'geocoding_platform_interface/**'
1616

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Setting up your development environment
1818
to generate an SSH key.
1919
* Clone your forked repo on your local development machine: `git clone [email protected]:<your_name_here>/flutter-geocoding.git`
2020
* Change into the `flutter-geocoding` directory: `cd flutter-geocoding`
21-
* Add an upstream to the original repo, so that fetch from the master repository and not your clone: `git remote add upstream [email protected]:Baseflow/flutter-geocoding.git`
21+
* Add an upstream to the original repo, so that fetch from the main repository and not your clone: `git remote add upstream [email protected]:Baseflow/flutter-geocoding.git`
2222

2323
Running the example project
2424
---------------------------
@@ -31,9 +31,9 @@ Contribute
3131

3232
We really appreciate contributions via GitHub pull requests. To contribute take the following steps:
3333

34-
* Make sure you are up to date with the latest code on the master:
34+
* Make sure you are up to date with the latest code on the main:
3535
* `git fetch upstream`
36-
* `git checkout upstream/develop -b <name_of_your_branch>`
36+
* `git checkout upstream/main -b <name_of_your_branch>`
3737
* Apply your changes
3838
* Verify your changes and fix potential warnings/ errors:
3939
* Check formatting: `flutter format .`

geocoding/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![License: MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
55
[![style: effective dart](https://img.shields.io/badge/style-effective_dart-40c4ff.svg)](https://github.com/tenhobi/effective_dart)
66
[![Buid status](https://github.com/Baseflow/flutter-geocoding/workflows/Geocoding/badge.svg)](https://github.com/Baseflow/flutter-geocoding/actions?query=workflow%3AGeocoding)
7-
[![codecov](https://codecov.io/gh/Baseflow/flutter-geocoding/branch/master/graph/badge.svg)](https://codecov.io/gh/Baseflow/flutter-geocoding)
7+
[![codecov](https://codecov.io/gh/Baseflow/flutter-geocoding/branch/main/graph/badge.svg)](https://codecov.io/gh/Baseflow/flutter-geocoding)
88

99
A Flutter Geocoding plugin which provides easy geocoding and reverse-geocoding features.
1010

geocoding/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: geocoding
22
description: A Flutter Geocoding plugin which provides easy geocoding and reverse-geocoding features.
33
version: 2.0.5+1
4-
repository: https://github.com/baseflow/flutter-geocoding/tree/master/geocoding
4+
repository: https://github.com/baseflow/flutter-geocoding/tree/main/geocoding
55
issue_tracker: https://github.com/Baseflow/flutter-geocoding/issues
66

77
environment:

geocoding_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: geocoding_android
22
description: A Flutter Geocoding plugin which provides easy geocoding and reverse-geocoding features.
33
version: 2.1.0
4-
repository: https://github.com/baseflow/flutter-geocoding/tree/master/geocoding/geocoding_android
4+
repository: https://github.com/baseflow/flutter-geocoding/tree/main/geocoding/geocoding_android
55
issue_tracker: https://github.com/Baseflow/flutter-geocoding/issues
66

77
environment:

geocoding_ios/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: geocoding_ios
22
description: A Flutter Geocoding plugin which provides easy geocoding and reverse-geocoding features.
33
version: 2.1.0
4-
repository: https://github.com/baseflow/flutter-geocoding/tree/master/geocoding/geocoding_ios
4+
repository: https://github.com/baseflow/flutter-geocoding/tree/main/geocoding/geocoding_ios
55
issue_tracker: https://github.com/Baseflow/flutter-geocoding/issues
66

77
environment:

geocoding_platform_interface/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# geocoding_platform_interface
22

3-
[![pub package](https://img.shields.io/pub/v/geocoding_platform_interface.svg)](https://pub.dartlang.org/packages/geocoding_platform_interface) ![Build status](https://github.com/Baseflow/flutter-geocoding/workflows/geocoding_platform_interface/badge.svg?branch=master) [![style: flutter_lints](https://img.shields.io/badge/style-flutter_lints-40c4ff.svg)](https://pub.dev/packages/flutter_lints)
3+
[![pub package](https://img.shields.io/pub/v/geocoding_platform_interface.svg)](https://pub.dartlang.org/packages/geocoding_platform_interface) ![Build status](https://github.com/Baseflow/flutter-geocoding/workflows/geocoding_platform_interface/badge.svg?branch=main) [![style: flutter_lints](https://img.shields.io/badge/style-flutter_lints-40c4ff.svg)](https://pub.dev/packages/flutter_lints)
44

55
A common platform interface for the [`geocoding`][1] plugin.
66

geocoding_platform_interface/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: geocoding_platform_interface
22
description: A common platform interface for the geocoding plugin.
3-
homepage: https://github.com/baseflow/flutter-geocoding/tree/master/geocoding_platform_interface
3+
homepage: https://github.com/baseflow/flutter-geocoding/tree/main/geocoding_platform_interface
44
# NOTE: We strongly prefer non-breaking changes, even at the expense of a
55
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
66
version: 2.0.1

0 commit comments

Comments
 (0)