1
0
forked from ROMEO/nexosim

Merge pull request #83 from asynchronics/prepare-release-v0.3.1

Prepare release v0.3.1
This commit is contained in:
Serge Barral 2025-01-28 12:38:28 +01:00 committed by GitHub
commit 30779d975c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 20 additions and 13 deletions

View File

@ -1,3 +1,10 @@
# 0.3.1 (2025-01-28)
- Add a blocking event queue ([#82]).
[#82]: https://github.com/asynchronics/nexosim/pull/82
# 0.3.0 (2025-01-20) # 0.3.0 (2025-01-20)
The final 0.3.0 release features a very large number of improvements and API The final 0.3.0 release features a very large number of improvements and API

View File

@ -6,7 +6,7 @@ small, simple simulations to very large simulation benches with complex
time-driven state machines. time-driven state machines.
## 🎉🥳 NeXosim 0.3 is out! 🚀🛰️ ## 🎉🥳 NeXosim 0.3.1 is out! 🚀🛰️
See the [changelog](CHANGELOG.md) for a summary of new features, or head to the extensive [API documentation][API] for the details. See the [changelog](CHANGELOG.md) for a summary of new features, or head to the extensive [API documentation][API] for the details.
@ -67,7 +67,7 @@ To use the latest version, add to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
nexosim = "0.3.0" nexosim = "0.3.1"
``` ```

View File

@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]
nexosim = { version = "0.3.0", path = "../nexosim" } nexosim = { version = "0.3.1", path = "../nexosim" }
[dev-dependencies] [dev-dependencies]
rand = "0.8" rand = "0.8"

View File

@ -10,7 +10,7 @@ name = "nexosim"
# - Update if necessary copyright notice in LICENSE-MIT # - Update if necessary copyright notice in LICENSE-MIT
# - Create a "vX.Y.Z" git tag # - Create a "vX.Y.Z" git tag
authors = ["Serge Barral <serge.barral@asynchronics.com>"] authors = ["Serge Barral <serge.barral@asynchronics.com>"]
version = "0.3.0" version = "0.3.1"
edition = "2021" edition = "2021"
rust-version = "1.77.0" rust-version = "1.77.0"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"

View File

@ -402,7 +402,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! nexosim = { version = "0.3.0", features = ["tracing"] } //! nexosim = { version = "0.3.1", features = ["tracing"] }
//! ``` //! ```
//! //!
//! See the [`tracing`] module for more information. //! See the [`tracing`] module for more information.
@ -414,7 +414,7 @@
//! //!
//! ```toml //! ```toml
//! [dependencies] //! [dependencies]
//! nexosim = { version = "0.3.0", features = ["server"] } //! nexosim = { version = "0.3.1", features = ["server"] }
//! ``` //! ```
//! //!
//! See the [`registry`] and [`server`] modules for more information. //! See the [`registry`] and [`server`] modules for more information.