This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git
The following commit(s) were added to refs/heads/main by this push:
new ed9329f Tweaks for 0.12.1 release (#354)
ed9329f is described below
commit ed9329f28eba5b1e0f6bbd10c79738ec42a9f568
Author: Andrew Lamb <[email protected]>
AuthorDate: Fri May 9 16:25:05 2025 -0400
Tweaks for 0.12.1 release (#354)
---
.cargo/config.toml | 17 +++++++++++++++++
dev/release/README.md | 2 +-
dev/release/create-tarball.sh | 2 +-
3 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/.cargo/config.toml b/.cargo/config.toml
index cb9ecf9..ab36bca 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -1,2 +1,19 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
[target.wasm32-unknown-unknown]
rustflags = ['--cfg', 'getrandom_backend="wasm_js"']
\ No newline at end of file
diff --git a/dev/release/README.md b/dev/release/README.md
index 8f33daa..6359d1b 100644
--- a/dev/release/README.md
+++ b/dev/release/README.md
@@ -126,7 +126,7 @@ Pick numbers in sequential order, with `1` for `rc1`, `2`
for `rc2`, etc.
Run `create-tarball.sh` with the `<version>` tag and `<rc>` and you found in
previous steps.
```shell
-./object_store/dev/release/create-tarball.sh 0.11.1 1
+./dev/release/create-tarball.sh 0.11.1 1
```
The `create-tarball.sh` script
diff --git a/dev/release/create-tarball.sh b/dev/release/create-tarball.sh
index 51e4222..34d8218 100755
--- a/dev/release/create-tarball.sh
+++ b/dev/release/create-tarball.sh
@@ -111,7 +111,7 @@ mkdir -p ${distdir}
(cd "${SOURCE_TOP_DIR}" && git archive ${release_hash} --prefix ${release}/ |
gzip > ${tarball})
echo "Running rat license checker on ${tarball}"
-${SOURCE_DIR}/../../../dev/release/run-rat.sh ${tarball}
+${SOURCE_DIR}/../../dev/release/run-rat.sh ${tarball}
echo "Signing tarball and creating checksums"
gpg --armor --output ${tarball}.asc --detach-sig ${tarball}