Skip to content

Commit

Permalink
Bump to 0.5.1, make sure docs will build (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernQ authored Apr 22, 2024
1 parent 7f717ea commit 60cd936
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 2 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,24 @@ jobs:
- name: check-fmt
run: cargo fmt --check

docs_rs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: remove rust-toolchain.toml
run: rm rust-toolchain.toml
- uses: dtolnay/rust-toolchain@v1
with:
target: riscv32imc-unknown-none-elf,riscv32imac-unknown-none-elf,riscv32imafc-unknown-none-elf
toolchain: nightly
components: rust-src
- uses: Swatinem/rust-cache@v2

- name: install docs-rs
run: cargo install cargo-docs-rs
- name: docs-rs
run: cd esp-wifi && cargo docs-rs

builds:
strategy:
matrix:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [0.5.1] - 2024-04-22

Patch release to fix docs.rs build

## [0.5.0] - 2024-04-19

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ heapless = { version = "0.8", default-features = false, features = [
] }
num-derive = { version = "0.4" }
num-traits = { version = "0.2", default-features = false }
esp-wifi-sys = { version = "0.1.0", path = "../esp-wifi-sys" }
esp-wifi-sys = { version = "0.3.0", path = "../esp-wifi-sys" }
embassy-sync = { version = "0.5.0" }
embassy-futures = { version = "0.1.0" }
toml-cfg = "0.2.0"
Expand Down
2 changes: 1 addition & 1 deletion esp-wifi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "esp-wifi"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
authors = [
"The ESP-RS team",
Expand Down

0 comments on commit 60cd936

Please sign in to comment.