Skip to content

Commit 1c0de8a

Browse files
authored
Release 0.49.0 (#2773)
1 parent 3b65db8 commit 1c0de8a

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
module(
44
name = "rules_rust",
5-
version = "0.48.0",
5+
version = "0.49.0",
66
)
77

88
bazel_dep(

docs/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Note that rules_rust bzlmod support is still a work in progress. Most features s
2222
To use `rules_rust` in a project using bzlmod, add the following to your `MODULE.bazel` file:
2323

2424
```python
25-
bazel_dep(name = "rules_rust", version = "0.46.0")
25+
bazel_dep(name = "rules_rust", version = "0.48.0")
2626
```
2727

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

4545
load("@rules_rust//rust:repositories.bzl", "rules_rust_dependencies", "rust_register_toolchains")
@@ -78,7 +78,7 @@ To build with a particular version of the Rust compiler, pass that version to [`
7878
rust_register_toolchains(
7979
edition = "2021",
8080
versions = [
81-
"1.66.1"
81+
"1.79.0"
8282
],
8383
)
8484
```
@@ -89,7 +89,7 @@ As well as an exact version, `versions` can accept `nightly/{iso_date}` and `bet
8989
rust_register_toolchains(
9090
edition = "2021",
9191
versions = [
92-
"nightly/2022-12-15",
92+
"nightly/2024-06-13",
9393
],
9494
)
9595
```

version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""The version of rules_rust."""
22

3-
VERSION = "0.48.0"
3+
VERSION = "0.49.0"

0 commit comments

Comments
 (0)