Skip to content

Commit

Permalink
[#77] Set release version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elfenpiff committed Jan 9, 2024
1 parent 9b0056e commit b381db7
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 21 deletions.
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,26 +33,26 @@ license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/eclipse-iceoryx/iceoryx2"
rust-version = "1.70"
version = "0.2.0"
version = "0.2.1"

[workspace.dependencies]
iceoryx2-bb-threadsafe = { version = "0.1.1", path = "iceoryx2-bb/threadsafe/" }
iceoryx2-bb-lock-free = { version = "0.1.1", path = "iceoryx2-bb/lock-free/" }
iceoryx2-bb-container = { version = "0.1.1", path = "iceoryx2-bb/container/" }
iceoryx2-bb-elementary = { version = "0.1.1", path = "iceoryx2-bb/elementary/" }
iceoryx2-bb-log = { version = "0.1.1", path = "iceoryx2-bb/log/" }
iceoryx2-bb-memory = { version = "0.1.1", path = "iceoryx2-bb/memory/" }
iceoryx2-bb-posix = { version = "0.1.1", path = "iceoryx2-bb/posix/" }
iceoryx2-bb-system-types = { version = "0.1.1", path = "iceoryx2-bb/system-types/" }
iceoryx2-bb-testing = { version = "0.1.1", path = "iceoryx2-bb/testing/" }
iceoryx2-bb-threadsafe = { version = "0.2.1", path = "iceoryx2-bb/threadsafe/" }
iceoryx2-bb-lock-free = { version = "0.2.1", path = "iceoryx2-bb/lock-free/" }
iceoryx2-bb-container = { version = "0.2.1", path = "iceoryx2-bb/container/" }
iceoryx2-bb-elementary = { version = "0.2.1", path = "iceoryx2-bb/elementary/" }
iceoryx2-bb-log = { version = "0.2.1", path = "iceoryx2-bb/log/" }
iceoryx2-bb-memory = { version = "0.2.1", path = "iceoryx2-bb/memory/" }
iceoryx2-bb-posix = { version = "0.2.1", path = "iceoryx2-bb/posix/" }
iceoryx2-bb-system-types = { version = "0.2.1", path = "iceoryx2-bb/system-types/" }
iceoryx2-bb-testing = { version = "0.2.1", path = "iceoryx2-bb/testing/" }

iceoryx2-pal-concurrency-sync = { version = "0.1.1", path = "iceoryx2-pal/concurrency-sync/" }
iceoryx2-pal-posix = { version = "0.1.1", path = "iceoryx2-pal/posix/" }
iceoryx2-pal-configuration = { version = "0.1.1", path = "iceoryx2-pal/configuration/" }
iceoryx2-pal-concurrency-sync = { version = "0.2.1", path = "iceoryx2-pal/concurrency-sync/" }
iceoryx2-pal-posix = { version = "0.2.1", path = "iceoryx2-pal/posix/" }
iceoryx2-pal-configuration = { version = "0.2.1", path = "iceoryx2-pal/configuration/" }

iceoryx2-cal = { version = "0.1.1", path = "iceoryx2-cal" }
iceoryx2-cal = { version = "0.2.1", path = "iceoryx2-cal" }

iceoryx2 = { version = "0.1.1", path = "iceoryx2/" }
iceoryx2 = { version = "0.2.1", path = "iceoryx2/" }

bindgen = { version = "0.65.1" }
bitflags = { version = "1.3.2" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Hi Rustaceans,

We are pleased to announce our second release of iceoryx2, version 0.2.0.
We are pleased to announce our second release of iceoryx2, version 0.2.1.
This inter-process zero-copy framework, crafted entirely in Rust, equips you
with tools for efficient communication between multiple processes. iceoryx2
facilitates event transmission across process boundaries, and allows
Expand Down Expand Up @@ -35,17 +35,17 @@ Elfenpiff
Links:

* repo: https://github.com/eclipse-iceoryx/iceoryx2
* release-notes: https://github.com/eclipse-iceoryx/iceoryx2/blob/main/doc/release-notes/iceoryx2-v0.2.0.md
* release-notes: https://github.com/eclipse-iceoryx/iceoryx2/blob/main/doc/release-notes/iceoryx2-v0.2.1.md
* crates.io: https://crates.io/crates/iceoryx2
* docs.rs: https://docs.rs/iceoryx2/0.2.0/iceoryx2/
* docs.rs: https://docs.rs/iceoryx2/0.2.1/iceoryx2/

# linkedin

Exciting news! I've just unleashed a brand-new zero-copy inter-process
middleware called iceoryx2, and it's crafted entirely in Rust. The GitHub
repository is live here: https://github.com/eclipse-iceoryx/iceoryx2, so if
you're in the business of developing cutting-edge technology, whether it's
for cars, robots, or even spacecraft voyaging to the moon, probes plumbing
you're looking for a cutting-edge open source Rust middleware, whether it's
for apps, robots, or even spacecraft voyaging to the moon, probes plumbing
the ocean's depths, or connecting AI algorithms with sources handling
massive data throughput or financial brokerage, I'd love for you to check
it out.
it out and get your feedback.
2 changes: 2 additions & 0 deletions doc/how-to-create-an-iceoryx2-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Assume that the new version number is `X.Y.Z`.

8. Change `workspace.package.version` in `$GIT_ROOT$/Cargo.toml` to the new
version number `X.Y.Z`.
* **IMPORTANT** change version to `X.Y.Z` for all `iceoryx2-**` packages under
`[workspace.dependencies]`
9. Call `$GIT_ROOT$/./internal/scripts/crates_io_publish_script.sh` and publish
all crates on `crates.io` and `docs.rs`.
10. Verify that the release looks fine on `docs.rs`
Expand Down
File renamed without changes.

0 comments on commit b381db7

Please sign in to comment.