Skip to content

Commit 3c32cd2

Browse files
committed
1.0.0-alpha.24
1 parent 6e914c1 commit 3c32cd2

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ license = "MIT"
3838
name = "markdown"
3939
repository = "https://github.com/wooorm/markdown-rs"
4040
rust-version = "1.56"
41-
version = "1.0.0-alpha.23"
41+
version = "1.0.0-alpha.24"
4242

4343
[workspace]
4444
members = ["generate", "mdast_util_to_markdown"]

mdast_util_to_markdown/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[dependencies]
2-
markdown = { path = "../", version = "1.0.0-alpha.23" }
2+
markdown = { path = "../", version = "1.0.0-alpha.24" }
33
regex = { version = "1" }
44

55
[dev-dependencies]

readme.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
> this is a new crate that reuses an old name.
1616
> The old crate (`0.3.0` and lower) has a bunch of problems.
1717
> Make sure to use the new crate,
18-
> currently in alpha at `1.0.0-alpha.23`.
18+
> currently in alpha at `1.0.0-alpha.24`.
1919
2020
CommonMark compliant markdown parser in Rust with ASTs and extensions.
2121

@@ -106,15 +106,15 @@ With [Rust][]
106106
install with `cargo`:
107107

108108
```sh
109-
cargo add [email protected].23
109+
cargo add [email protected].24
110110
```
111111

112112
> 👉 **Note**:
113113
> this is a new crate that reuses an old name.
114114
> The old crate (`0.3.0` and lower)
115115
> has a bunch of problems.
116116
> Make sure to use the new crate,
117-
> currently in alpha at `1.0.0-alpha.23`.
117+
> currently in alpha at `1.0.0-alpha.24`.
118118
119119
## Use
120120

@@ -179,10 +179,10 @@ Root { children: [Heading { children: [Text { value: "Hi ", position: Some(1:3-1
179179
## API
180180

181181
`markdown-rs` exposes
182-
[`to_html`](https://docs.rs/markdown/1.0.0-alpha.23/markdown/fn.to_html.html),
183-
[`to_html_with_options`](https://docs.rs/markdown/1.0.0-alpha.23/markdown/fn.to_html_with_options.html),
184-
[`to_mdast`](https://docs.rs/markdown/1.0.0-alpha.23/markdown/fn.to_mdast.html),
185-
[`Options`](https://docs.rs/markdown/1.0.0-alpha.23/markdown/struct.Options.html),
182+
[`to_html`](https://docs.rs/markdown/1.0.0-alpha.24/markdown/fn.to_html.html),
183+
[`to_html_with_options`](https://docs.rs/markdown/1.0.0-alpha.24/markdown/fn.to_html_with_options.html),
184+
[`to_mdast`](https://docs.rs/markdown/1.0.0-alpha.24/markdown/fn.to_mdast.html),
185+
[`Options`](https://docs.rs/markdown/1.0.0-alpha.24/markdown/struct.Options.html),
186186
and a few other structs and enums.
187187

188188
See the [crate docs][docs] for more info.
@@ -399,9 +399,9 @@ Special thanks go out to:
399399

400400
[badge-coverage-url]: https://codecov.io/github/wooorm/markdown-rs
401401

402-
[docs]: https://docs.rs/markdown/1.0.0-alpha.23/markdown/
402+
[docs]: https://docs.rs/markdown/1.0.0-alpha.24/markdown/
403403

404-
[crate]: https://crates.io/crates/markdown/1.0.0-alpha.23
404+
[crate]: https://crates.io/crates/markdown/1.0.0-alpha.24
405405

406406
[repo]: https://github.com/wooorm/markdown-rs
407407

0 commit comments

Comments
 (0)