Skip to content

Commit

Permalink
Merge branch 'release-0.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
sean0x42 committed Jan 23, 2020
2 parents 6cb7887 + aca581f commit 31152eb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 2 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <hello@seanbailey.dev>"]
license = "MIT"
repository = "https://github.com/sean0x42/markdown-extract"
Expand All @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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

...
```
Expand Down
File renamed without changes.

0 comments on commit 31152eb

Please sign in to comment.