Closed Acciente717 closed 3 years ago
The code currently in master on this repo will eventually be released as 0.7.0; we update the version number in Cargo.toml just before release (this way it's possible to use cargo patch with the git URL to patch in the latest version). You can view the exact code that's used for each released version on the Releases page, e.g. v0.6.13.
Just as an example, in this repo,
Reset()
is defined inasm.S
as assembly code, https://github.com/rust-embedded/cortex-m-rt/blob/master/asm.SHowever, in crate.io,
Reset()
is defined inlib.rs
as Rust code. https://docs.rs/cortex-m-rt/0.6.13/src/cortex_m_rt/lib.rs.htmlThey all have the version number
0.6.13
. Why is it?