Skip to content

Commit d5ac63e

Browse files
committed
Fix docs.rs build
1 parent df4c823 commit d5ac63e

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
66

77
## [Unreleased]
88

9-
## [0.7.0]
9+
## [0.7.1] - 2025-10-02
10+
11+
* Fix the docs.rs build
12+
13+
## [0.7.0] - 2025-10-02
1014

1115
* Support for diesel 2.3
1216
* Added support for running migrations via `AsyncMigrationHarness`
@@ -109,4 +113,5 @@ in the pool should be checked if they are still valid
109113
[0.6.0]: https://github.com/weiznich/diesel_async/compare/v0.5.2...v0.6.0
110114
[0.6.1]: https://github.com/weiznich/diesel_async/compare/v0.6.0...v0.6.1
111115
[0.7.0]: https://github.com/weiznich/diesel_async/compare/v0.6.0...v0.7.0
116+
[0.7.1]: https://github.com/weiznich/diesel_async/compare/v0.7.0...v0.7.1
112117
[Unreleased]: https://github.com/weiznich/diesel_async/compare/v0.7.0...main

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "diesel-async"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Georg Semmler <[email protected]>"]
55
edition = "2021"
66
autotests = false

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22
//! Diesel-async provides async variants of diesel related query functionality
33
//!
44
//! diesel-async is an extension to diesel itself. It is designed to be used together

0 commit comments

Comments
 (0)