From 767aef1a528d1f66e765e55ed451031c7f2e2512 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Mon, 1 Aug 2022 16:38:07 -0700 Subject: [PATCH] Release 0.1.8 --- Cargo.toml | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8233276..d6d0741 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "clang-ast" -version = "0.1.7" # remember to update html_root_url +version = "0.1.8" # remember to update html_root_url authors = ["David Tolnay "] categories = ["compilers", "encoding"] description = "Data structures for processing Clang's `-ast-dump=json` format" diff --git a/src/lib.rs b/src/lib.rs index 41f8952..9bee224 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -386,7 +386,7 @@ //! and comparible more cheaply than a string. You may find yourself with lots //! of hashtables keyed on `Id`. -#![doc(html_root_url = "https://docs.rs/clang-ast/0.1.7")] +#![doc(html_root_url = "https://docs.rs/clang-ast/0.1.8")] #![allow( clippy::blocks_in_if_conditions, clippy::let_underscore_drop,