diff --git a/gba_test/CHANGELOG.md b/gba_test/CHANGELOG.md index 9f7169f..9782943 100644 --- a/gba_test/CHANGELOG.md +++ b/gba_test/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.1.2 - 2024-06-06 +### Fixed +- Provide correct target for docs.rs build. + ## 0.1.1 - 2024-06-06 ### Fixed - Enabled `doc_cfg` feature to fix documentation build. diff --git a/gba_test/Cargo.toml b/gba_test/Cargo.toml index 7964e2d..6ada8b1 100644 --- a/gba_test/Cargo.toml +++ b/gba_test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gba_test" -version = "0.1.1" +version = "0.1.2" authors = ["Anders Evensen"] edition = "2021" license = "MIT OR Apache-2.0" @@ -15,6 +15,7 @@ keywords = ["gba", "test", "testing", "framework", "development"] # RUSTDOCFLAGS="--cfg doc_cfg" cargo +nightly doc --all-features --no-deps --open all-features = true rustdoc-args = ["--cfg", "doc_cfg"] +targets = ["armv5te-unknown-linux-gnueabi"] [profile.dev] opt-level = 3