Skip to content

Commit

Permalink
Set version to 0.6.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JEnoch committed Sep 29, 2022
1 parent 29881fd commit 864b03a
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 55 deletions.
112 changes: 67 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#
[package]
name = "zenoh_backend_filesystem"
version = "0.6.0-dev.0"
version = "0.6.0-beta.1"
authors = [
"kydos <[email protected]>",
"Julien Enoch <[email protected]>",
Expand Down Expand Up @@ -42,12 +42,12 @@ serde_json = "1.0.85"
tempfile = "3.3.0"
uhlc = "0.5.1"
walkdir = "2.3.2"
zenoh = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master", features = [ "unstable" ] }
zenoh-collections = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
zenoh-core = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
zenoh-protocol = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
zenoh-util = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
zenoh_backend_traits = { git = "https://github.com/eclipse-zenoh/zenoh", branch = "master" }
zenoh = { version = "0.6.0-beta.1", features = [ "unstable" ] }
zenoh-collections = { version = "0.6.0-beta.1" }
zenoh-core = { version = "0.6.0-beta.1" }
zenoh-protocol = { version = "0.6.0-beta.1" }
zenoh-util = { version = "0.6.0-beta.1" }
zenoh_backend_traits = { version = "0.6.0-beta.1" }

[build-dependencies]
rustc_version = "0.4.0"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,13 +181,13 @@ To know the Rust version you're `zenohd` has been built with, use the `--version
Example:
```bash
$ zenohd --version
The zenoh router v0.6.0-dev-24-g1f20c86 built with rustc 1.57.0 (f1edd0429 2021-11-29)
The zenoh router v0.6.0-beta.1 built with rustc 1.64.0 (a55dd71d5 2022-09-19)
```
Here, `zenohd` has been built with the rustc version `1.57.0`.
Here, `zenohd` has been built with the rustc version `1.64.0`.
Install and use this toolchain with the following command:

```bash
$ rustup default 1.57.0
$ rustup default 1.64.0
```

And `zenohd` version corresponds to an un-released commit with id `1f20c86`. Update the `zenoh` dependency in Cargo.lock with this command:
Expand Down

0 comments on commit 864b03a

Please sign in to comment.