Skip to content

Commit

Permalink
release v0.22.0
Browse files Browse the repository at this point in the history
- misc. updates and fixes.
  • Loading branch information
joseluis committed Jan 13, 2025
1 parent efcd4da commit 914fe15
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ resolver = "3"
[package]
name = "devela"
description = "A cohesive development layer."
version = "0.22.0-wip"
version = "0.22.0"
edition = "2021"
rust-version = "1.84.0" # In sync with README.md & .github/workflows/check.yml
authors = ["José Luis Cruz <joseluis@andamira.net>"]
Expand All @@ -54,7 +54,7 @@ documentation = "https://docs.rs/devela"
license = "MIT OR Apache-2.0"
include = [
"/Cargo.toml",
"/build/**/*.rs",
"/build/**/*.rs", "/build/**/*.md",
"/src/**/*.rs", "/src/**/*.md",
"/config/*",
"/DOCS/VENDORED*.md",
Expand Down
8 changes: 5 additions & 3 deletions DOCS/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog], and this project adheres to
[Semantic Versioning].

## [0.22.0-wip] - (TBD)
## [0.23.0-wip] *unreleased*

## [0.22.0] 2025-01-13

### Added

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


[unreleased]: https://github.com/andamira/devela/compare/v0.21.2...HEAD
[0.22.0]: https://github.com/andamira/devela/releases/tag/v0.22.0 (TBD)
[unreleased]: https://github.com/andamira/devela/compare/v0.22.0...HEAD
[0.22.0]: https://github.com/andamira/devela/releases/tag/v0.22.0
[0.21.2]: https://github.com/andamira/devela/releases/tag/v0.21.2
[0.21.1]: https://github.com/andamira/devela/releases/tag/v0.21.1
[0.21.0]: https://github.com/andamira/devela/releases/tag/v0.21.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<br/>
[![Crate](https://img.shields.io/crates/v/devela.svg)](https://crates.io/crates/devela)
[![Documentation](https://docs.rs/devela/badge.svg)](https://docs.rs/devela/)
[![MSRV 1.80.1](https://flat.badgen.net/badge/MSRV/1.80.1/purple)](https://releases.rs/docs/1.80.1/)
[![MSRV 1.84.0](https://flat.badgen.net/badge/MSRV/1.84.0/purple)](https://releases.rs/docs/1.84.0/)

---

Expand Down
2 changes: 1 addition & 1 deletion src/sys/mem/alloc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate::items! { // structural access: _mods, _all
#[allow(unused)]
pub use _mods::*;

mod _mods {
mod _mods { #![allow(unused)]
pub use super::{namespace::*, reexports::*};
}
pub(super) mod _all {
Expand Down

0 comments on commit 914fe15

Please sign in to comment.