Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update references to default branch #362

Merged
merged 1 commit into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: CI

on:
push:
branches: [ master ]
branches: [ main ]
pull_request:
branches: [ master ]
branches: [ main ]

jobs:
test:
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased] - 🔜
### Changed
- Switched branch from master to main ([#362](https://github.com/interagent/pliny/pull/362))

## [1.0.0] - 🔜
### Added
Expand Down Expand Up @@ -206,7 +208,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Useless code coverage reports. ([#255](https://github.com/interagent/pliny/pull/255))
- Cleanup of active database connections after migration runs. ([#257](https://github.com/interagent/pliny/pull/257))

[Unreleased]: https://github.com/interagent/pliny/compare/v1.0.0...master
[Unreleased]: https://github.com/interagent/pliny/compare/v1.0.0...main
[1.0.0]: https://github.com/interagent/pliny/compare/v0.30.2...v1.0.0
[0.32.0]: https://github.com/interagent/pliny/compare/v0.31.0...v0.32.0
[0.31.0]: https://github.com/interagent/pliny/compare/v0.30.1...v0.31.0
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ task :release do
# build new gem and push
sh "gem build pliny.gemspec"
sh "gem push pliny-#{new_version}.gem"
sh "git push origin master --tags"
sh "git push origin main --tags"
sh "rm pliny-#{new_version}.gem"
end

Expand Down
Loading