diff --git a/CHANGELOG.md b/CHANGELOG.md index 27dbefd..391b052 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,12 @@ Patch notes are automatically extracted from this changelog whenever a tag is pushed to the GitHub repository. The tag name must match a heading exactly. + +## v0.1.1 + + - Publish as a binary instead of a library + + ## v0.1.0-alpha This version is the initial release of `markdown_extract`! It features the diff --git a/Cargo.toml b/Cargo.toml index a6a7f83..e2b4df7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "markdown-extract" description = "Extract sections of a markdown file." -version = "0.1.0-alpha" +version = "0.1.1" authors = ["Sean Bailey "] license = "MIT" repository = "https://github.com/sean0x42/markdown-extract" @@ -10,13 +10,9 @@ edition = "2018" exclude = [".github/*"] readme = "README.md" -[lib] -name = "markdown_extract" -path = "src/lib.rs" - [[bin]] name = "markdown-extract" -path = "src/bin/markdown_extract.rs" +path = "src/bin.rs" [dependencies] log = "0.4" diff --git a/README.md b/README.md index 1ff3744..995bbd5 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ View the help guide if you like. ```console $ markdown-extract -h -markdown-extract 0.1.0-alpha +markdown-extract 0.1.1 Extracts sections of a markdown file USAGE: @@ -37,8 +37,8 @@ ARGS: Then extract matching sections in a markdown file. ```console -$ markdown-extract v0.1.0-alpha CHANGELOG.md -## v0.1.0-alpha +$ markdown-extract v0.1.1 CHANGELOG.md +## v0.1.1 ... ``` diff --git a/src/bin/markdown_extract.rs b/src/bin.rs similarity index 100% rename from src/bin/markdown_extract.rs rename to src/bin.rs