From 535c58c7698fcdbd0bac07b86eb1bcd122d6ff84 Mon Sep 17 00:00:00 2001 From: Peter Cai <222655+pcai@users.noreply.github.com> Date: Sat, 6 Jul 2024 01:18:12 +0000 Subject: [PATCH] master -> main --- CHANGELOG.md | 2 +- README.md | 2 +- RELEASING.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71d831b3..a22822f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -538,7 +538,7 @@ Combined release ticket: [#481](https://github.com/savonrb/savon/issues/481) * `Hash#map_soap_response` and some of its helpers are moved to [Nori v1.0.0](http://rubygems.org/gems/nori/versions/1.0.0). Along with replacing core extensions with a proper implementation, Nori now contains a number of methods - for [configuring its default behavior](https://github.com/savonrb/nori/blob/master/CHANGELOG.md): + for [configuring its default behavior](https://github.com/savonrb/nori/blob/main/CHANGELOG.md): * The option whether to strip namespaces was moved to Nori.strip_namespaces * You can disable "advanced typecasting" for SOAP response values diff --git a/README.md b/README.md index e50d78a5..5f694bbf 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ For more examples, you should check out the Every savon release is tested with contemporary supported versions of ruby. Historical compatibility information: -* `master` - same support as Ruby +* `main` - same support as Ruby * 2.15.x - MRI 3.0, 3.1, 3.2, 3.3 * 2.13.x, 2.14.x - MRI 2.7, 3.0, 3.1 * 2.12.x - MRI 2.2, 2.3, 2.4, 2.5 diff --git a/RELEASING.md b/RELEASING.md index 981c8aa9..f42304f9 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -4,7 +4,7 @@ _You'll need write access to the repository and the [rubygems](https://rubygems. 1. On main, edit [CHANGELOG.md](https://github.com/savonrb/savon/blob/main/CHANGELOG.md) to finalize the new version number and list of all changes. 2. Bump [version.rb](https://github.com/savonrb/savon/blob/main/lib/savon/version.rb) to the version you picked in previous step. -3. **Final check**: make sure all tests are green, and that `gem build savon.gemspec` on master succeeds. If not, merge any fixes back to master and go to step 1. +3. **Final check**: make sure all tests are green, and that `gem build savon.gemspec` on main succeeds. If not, merge any fixes back to main and go to step 1. 4. [Draft a new release](https://github.com/savonrb/savon/releases/new) on Github. - Create a tag matching the version in previous step - e.g. `v2.12.1` - prepend the version number with a "v". - Use `v[version]` for the release title, and copy the changelog into the release notes.