about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-04-18 20:34:56 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-04-18 20:34:56 +0200
commit076016d55afdf760c7e30e23c5df8f0c079cd85b (patch)
tree82d903216d4731843279be2cc3996a1b1e4c8c4a
parentba9a008d90ad7b9c11379a00766f9e4ebbcdc126 (diff)
downloadrust-076016d55afdf760c7e30e23c5df8f0c079cd85b.tar.gz
rust-076016d55afdf760c7e30e23c5df8f0c079cd85b.zip
Update rustdoc-json-types `FORMAT_VERSION` to 45
-rw-r--r--src/rustdoc-json-types/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustdoc-json-types/lib.rs b/src/rustdoc-json-types/lib.rs
index 875857f9651..64223b5b758 100644
--- a/src/rustdoc-json-types/lib.rs
+++ b/src/rustdoc-json-types/lib.rs
@@ -30,7 +30,7 @@ pub type FxHashMap<K, V> = HashMap<K, V>; // re-export for use in src/librustdoc
 /// This integer is incremented with every breaking change to the API,
 /// and is returned along with the JSON blob as [`Crate::format_version`].
 /// Consuming code should assert that this value matches the format version(s) that it supports.
-pub const FORMAT_VERSION: u32 = 44;
+pub const FORMAT_VERSION: u32 = 45;
 
 /// The root of the emitted JSON blob.
 ///