Skip to content

Commit 3ff18b7

Browse files
authored
release: bump crate version to 0.4.0. (#25)
* chore: bump crate version to `0.4.0`. * chore: use stable docs in CI.
1 parent 0788795 commit 3ff18b7

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ jobs:
8282
steps:
8383
- uses: actions/checkout@v4
8484
- name: Update Rust
85-
run: rustup update nightly && rustup default nightly
86-
- run: RUSTDOCFLAGS="--cfg docsrs" cargo +nightly doc --locked --all-features
85+
run: rustup update stable && rustup default stable
86+
- run: cargo doc --locked --all-features
8787

8888
msrv:
8989
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
## 0.4.0 - 10-13-2025
11+
1012
#### Added
1113

1214
* Implemented a `walk` function that can be used to glob a cloud storage URL ([#24](https://github.com/stjude-rust-labs/cloud-copy/pull/24)).
1315

1416
#### Fixed
1517

18+
* Fixed Google Cloud Storage uploads not working ([#24](https://github.com/stjude-rust-labs/cloud-copy/pull/24)).
1619
* Improved progress bar message ([#23](https://github.com/stjude-rust-labs/cloud-copy/pull/23)).
1720

1821
## 0.3.0 - 09-15-2025

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cloud-copy"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "A library for copying files to and from cloud storage."
55
license = "MIT OR Apache-2.0"
66
edition = "2024"

src/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
//! progress bars using the `tracing_indicatif` crate.
1515
1616
#![deny(rustdoc::broken_intra_doc_links)]
17-
#![cfg_attr(docsrs, feature(doc_cfg))]
17+
// This is disabled until upstream crates are fixed for nightly
18+
//#![cfg_attr(docsrs, feature(doc_cfg))]
1819

1920
use std::borrow::Cow;
2021
use std::fmt;

0 commit comments

Comments
 (0)