Skip to content

Commit

Permalink
more
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb committed Nov 25, 2024
1 parent 800568e commit 48108f3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,13 +217,13 @@ cargo bench -p arrow-cast --bench parse_time
To set the baseline for your benchmarks, use the --save-baseline flag:

```bash
git checkout master
git checkout main

cargo bench --bench parse_time -- --save-baseline master
cargo bench --bench parse_time -- --save-baseline main

git checkout feature

cargo bench --bench parse_time -- --baseline master
cargo bench --bench parse_time -- --baseline main
```

## Git Pre-Commit Hook
Expand Down
4 changes: 2 additions & 2 deletions dev/release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Now prepare a PR to update `CHANGELOG.md` and versions on `main` to reflect the
Do this in the root of this repository. For example [#2323](https://github.com/apache/arrow-rs/pull/2323)

```bash
git checkout master
git checkout main
git pull
git checkout -b <RELEASE_BRANCH>

Expand Down Expand Up @@ -115,7 +115,7 @@ Create and push the tag thusly:

```shell
git fetch apache
git tag <version> apache/master
git tag <version> apache/main
# push tag to apache
git push apache <version>
```
Expand Down
2 changes: 1 addition & 1 deletion object_store/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ license = "MIT/Apache-2.0"
readme = "README.md"
description = "A generic object store interface for uniformly interacting with AWS S3, Google Cloud Storage, Azure Blob Storage and local files."
keywords = ["object", "storage", "cloud"]
repository = "https://github.com/apache/arrow-rs/tree/master/object_store"
repository = "https://github.com/apache/arrow-rs/tree/main/object_store"
rust-version = "1.64.0"

[package.metadata.docs.rs]
Expand Down
8 changes: 4 additions & 4 deletions object_store/dev/release/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Note this process is done in the `object_store` directory. See [#6227] for an e
# NOTE: Run commands in object_store sub directory (not main repo checkout)
# cd object_store

git checkout master
git checkout main
git pull
git checkout -b <RELEASE_BRANCH>

Expand All @@ -82,7 +82,7 @@ export CHANGELOG_GITHUB_TOKEN=<TOKEN>
# Commit changes
git commit -a -m 'Create changelog'

# push changes to fork and create a PR to master
# push changes to fork and create a PR to main
git push
```

Expand All @@ -109,7 +109,7 @@ Create and push the tag thusly:

```shell
git fetch apache
git tag <version> apache/master
git tag <version> apache/main
# push tag to apache
git push apache <version>
```
Expand Down Expand Up @@ -170,7 +170,7 @@ The vote will be open for at least 72 hours.
[1]: https://github.com/apache/arrow-rs/tree/b945b15de9085f5961a478d4f35b0c5c3427e248
[2]: https://dist.apache.org/repos/dist/dev/arrow/apache-arrow-object-store-rs-0.11.1-rc1
[3]: https://github.com/apache/arrow-rs/blob/b945b15de9085f5961a478d4f35b0c5c3427e248/object_store/CHANGELOG.md
[4]: https://github.com/apache/arrow-rs/blob/master/object_store/dev/release/verify-release-candidate.sh
[4]: https://github.com/apache/arrow-rs/blob/main/object_store/dev/release/verify-release-candidate.sh
```

For the release to become "official" it needs at least three Apache Arrow PMC members to vote +1 on it.
Expand Down

0 comments on commit 48108f3

Please sign in to comment.