Skip to content

Commit 914fe15

Browse files
committed
release v0.22.0
- misc. updates and fixes.
1 parent efcd4da commit 914fe15

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
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-wip"
48+
version = "0.22.0"
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>"]
@@ -54,7 +54,7 @@ documentation = "https://docs.rs/devela"
5454
license = "MIT OR Apache-2.0"
5555
include = [
5656
"/Cargo.toml",
57-
"/build/**/*.rs",
57+
"/build/**/*.rs", "/build/**/*.md",
5858
"/src/**/*.rs", "/src/**/*.md",
5959
"/config/*",
6060
"/DOCS/VENDORED*.md",

DOCS/CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog], and this project adheres to
66
[Semantic Versioning].
77

8-
## [0.22.0-wip] - (TBD)
8+
## [0.23.0-wip] *unreleased*
9+
10+
## [0.22.0] 2025-01-13
911

1012
### Added
1113

@@ -1062,8 +1064,8 @@ The format is based on [Keep a Changelog], and this project adheres to
10621064
- add macro `iif`.
10631065

10641066

1065-
[unreleased]: https://github.com/andamira/devela/compare/v0.21.2...HEAD
1066-
[0.22.0]: https://github.com/andamira/devela/releases/tag/v0.22.0 (TBD)
1067+
[unreleased]: https://github.com/andamira/devela/compare/v0.22.0...HEAD
1068+
[0.22.0]: https://github.com/andamira/devela/releases/tag/v0.22.0
10671069
[0.21.2]: https://github.com/andamira/devela/releases/tag/v0.21.2
10681070
[0.21.1]: https://github.com/andamira/devela/releases/tag/v0.21.1
10691071
[0.21.0]: https://github.com/andamira/devela/releases/tag/v0.21.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<br/>
77
[![Crate](https://img.shields.io/crates/v/devela.svg)](https://crates.io/crates/devela)
88
[![Documentation](https://docs.rs/devela/badge.svg)](https://docs.rs/devela/)
9-
[![MSRV 1.80.1](https://flat.badgen.net/badge/MSRV/1.80.1/purple)](https://releases.rs/docs/1.80.1/)
9+
[![MSRV 1.84.0](https://flat.badgen.net/badge/MSRV/1.84.0/purple)](https://releases.rs/docs/1.84.0/)
1010

1111
---
1212

src/sys/mem/alloc/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ crate::items! { // structural access: _mods, _all
1010
#[allow(unused)]
1111
pub use _mods::*;
1212

13-
mod _mods {
13+
mod _mods { #![allow(unused)]
1414
pub use super::{namespace::*, reexports::*};
1515
}
1616
pub(super) mod _all {

0 commit comments

Comments
 (0)