From d712c442a4820a19e5476517af817cc3bf729d85 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Thu, 28 Sep 2023 10:47:56 +0200 Subject: fix: include CHANGELOG.md in .crate file The file is linked from the README.md, so it should also be included. --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2702e96..1d94517 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,8 @@ * Removed incorrect lowercasing of char tokens when an eof-in-tag error occurred in a `` tag. +* This changelog file is now included in the published `.crate` file. + #### Breaking changes * Byte offsets were moved out of the `Token` enum into a new `Trace` enum. diff --git a/Cargo.toml b/Cargo.toml index a15ea19..c099d1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ categories = ["parser-implementations", "web-programming"] license = "MIT" repository = "https://git.push-f.com/html5tokenizer" version = "0.5.1" -include = ["src/**/*", "examples/", "LICENSE", "README.md"] +include = ["src/**/*", "examples/", "LICENSE", "README.md", "CHANGELOG.md"] [[example]] name = "tokenize" -- cgit v1.2.3