Skip to content

Commit 03a462e

Browse files
committed
release v0.22.1
- fix docs. compilation. - misc. docs updates.
1 parent 914fe15 commit 03a462e

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ resolver = "3"
4545
[package]
4646
name = "devela"
4747
description = "A cohesive development layer."
48-
version = "0.22.0"
48+
version = "0.22.1"
4949
edition = "2021"
5050
rust-version = "1.84.0" # In sync with README.md & .github/workflows/check.yml
5151
authors = ["José Luis Cruz <joseluis@andamira.net>"]
@@ -65,6 +65,7 @@ include = [
6565
"/examples/data/bitfield.rs",
6666
"/examples/data/id_seq.rs",
6767
"/examples/num/niche.rs",
68+
"/examples/work/coro_run.rs",
6869
]
6970
autoexamples = false
7071
categories = ["development-tools", "rust-patterns", "no-std::no-alloc"]

DOCS/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ The format is based on [Keep a Changelog], and this project adheres to
77

88
## [0.23.0-wip] *unreleased*
99

10+
## [0.22.1] 2025-01-13
11+
12+
- fix docs compilation.
13+
14+
1015
## [0.22.0] 2025-01-13
1116

1217
### Added

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# devela
22

3-
[![Repository](https://flat.badgen.net/badge/github/v0.22.0/blue?icon=git)](https://github.com/andamira/devela)
3+
[![Repository](https://flat.badgen.net/badge/github/v0.22.1/blue?icon=git)](https://github.com/andamira/devela)
44
[![Documentation ahead](https://flat.badgen.net/badge/docs/ahead*/blue)](https://andamira.github.io/libera/doc/devela/)
55
[![MSRV ahead 1.84.0](https://flat.badgen.net/badge/MSRV/1.84.0/blue)](https://releases.rs/docs/1.84.0/)
66
<br/>
@@ -25,8 +25,6 @@ Features are grouped into categories, enabling modular and orthogonal developmen
2525

2626
For a full list of features and their categories, see the [Features Documentation].
2727

28-
[Features Doucumentation]: https://andamira.github.io/libera/doc/devela/_info/features/index.html
29-
<!-- WAIT: publish -->
3028
[Features Documentation]: https://docs.rs/devela/latest/devela/_info/features/index.html
3129

3230

src/_info/examples.rs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,23 @@
33
//!
44
//! These examples generate example structures for documentation purposes.
55
//
6-
// NOTE: rustdoc doesn't detect changes in the examples, only in the library,
7-
// so it's necessary to modify the library to rebuild the examples docs
6+
// NOTE: rustdoc doesn't detect changes in the examples, but only in the library.
7+
// So it's necessary to modify the library in order to rebuild the examples docs.
88

99
#![allow(unused)]
1010

1111
/* in-crate integrated examples */
1212

13-
#[cfg(feature = "_bit_u8")]
14-
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "_bit_u8")))]
15-
#[path = "../../examples/data/bitfield.rs"]
16-
pub mod bitfield;
1713
#[cfg(all(feature = "bit", feature = "_bit_u8"))]
1814
#[path = "../../examples/code/enumset.rs"]
1915
pub mod enumset;
20-
2116
#[path = "../../examples/code/enumint.rs"]
2217
pub mod enumint;
2318

19+
#[cfg(feature = "_bit_u8")]
20+
#[cfg_attr(feature = "nightly_doc", doc(cfg(feature = "_bit_u8")))]
21+
#[path = "../../examples/data/bitfield.rs"]
22+
pub mod bitfield;
2423
#[path = "../../examples/data/id_seq.rs"]
2524
pub mod id_seq;
2625

0 commit comments

Comments
 (0)