Skip to content

Commit

Permalink
Release 0.49.0 (#2773)
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre authored Aug 1, 2024
1 parent 3b65db8 commit 1c0de8a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module(
name = "rules_rust",
version = "0.48.0",
version = "0.49.0",
)

bazel_dep(
Expand Down
10 changes: 5 additions & 5 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Note that rules_rust bzlmod support is still a work in progress. Most features s
To use `rules_rust` in a project using bzlmod, add the following to your `MODULE.bazel` file:

```python
bazel_dep(name = "rules_rust", version = "0.46.0")
bazel_dep(name = "rules_rust", version = "0.48.0")
```

Don't forget to substitute in your desired release's version number.
Expand All @@ -38,8 +38,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
# https://github.com/bazelbuild/rules_rust/releases
http_archive(
name = "rules_rust",
integrity = "sha256-F8U7+AC5MvMtPKGdLLnorVM84cDXKfDRgwd7/dq3rUY=",
urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.46.0/rules_rust-v0.46.0.tar.gz"],
integrity = "sha256-Weev1uz2QztBlDA88JX6A1N72SucD1V8lBsaliM0TTg=",
urls = ["https://github.com/bazelbuild/rules_rust/releases/download/0.48.0/rules_rust-v0.48.0.tar.gz"],
)

load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
Expand Down Expand Up @@ -78,7 +78,7 @@ To build with a particular version of the Rust compiler, pass that version to [`
rust_register_toolchains(
edition = "2021",
versions = [
"1.66.1"
"1.79.0"
],
)
```
Expand All @@ -89,7 +89,7 @@ As well as an exact version, `versions` can accept `nightly/{iso_date}` and `bet
rust_register_toolchains(
edition = "2021",
versions = [
"nightly/2022-12-15",
"nightly/2024-06-13",
],
)
```
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The version of rules_rust."""

VERSION = "0.48.0"
VERSION = "0.49.0"

0 comments on commit 1c0de8a

Please sign in to comment.