about summary refs log tree commit diff
path: root/rustc_tools_util/src
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-10-01 00:52:25 +0200
committerMatthias Krüger <matthias.krueger@famsik.de>2022-10-01 16:13:48 +0200
commit418b30b499144b0acd71b2d4c4dfe2f6931fa8c7 (patch)
tree13aebb73ecc5d3f606708065e9c03f901617b911 /rustc_tools_util/src
parent31b17411a6cd5c4b36cde6ff008de1d3ec128ac4 (diff)
rustc_tool_utils bump version in anticipation of a new release
cc https://github.com/rust-lang/rust-clippy/issues/9553
Diffstat (limited to 'rustc_tools_util/src')
-rw-r--r--rustc_tools_util/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/rustc_tools_util/src/lib.rs b/rustc_tools_util/src/lib.rs
index 0f988601670..01d25c53126 100644
--- a/rustc_tools_util/src/lib.rs
+++ b/rustc_tools_util/src/lib.rs
@@ -137,7 +137,7 @@ mod test {
         let vi = get_version_info!();
         assert_eq!(vi.major, 0);
         assert_eq!(vi.minor, 2);
-        assert_eq!(vi.patch, 0);
+        assert_eq!(vi.patch, 1);
         assert_eq!(vi.crate_name, "rustc_tools_util");
         // hard to make positive tests for these since they will always change
         assert!(vi.commit_hash.is_none());
@@ -147,7 +147,7 @@ mod test {
     #[test]
     fn test_display_local() {
         let vi = get_version_info!();
-        assert_eq!(vi.to_string(), "rustc_tools_util 0.2.0");
+        assert_eq!(vi.to_string(), "rustc_tools_util 0.2.1");
     }
 
     #[test]
@@ -156,7 +156,7 @@ mod test {
         let s = format!("{vi:?}");
         assert_eq!(
             s,
-            "VersionInfo { crate_name: \"rustc_tools_util\", major: 0, minor: 2, patch: 0 }"
+            "VersionInfo { crate_name: \"rustc_tools_util\", major: 0, minor: 2, patch: 1 }"
         );
     }
 }