Skip to content

Commit b910e37

Browse files
committed
1.0.0-alpha.3
1 parent e139a80 commit b910e37

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "markdown"
3-
version = "1.0.0-alpha.2"
3+
version = "1.0.0-alpha.3"
44
authors = ["Titus Wormer <[email protected]>"]
55
edition = "2018"
66
rust-version = "1.56"

readme.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
> 👉 **Note**: this is a new crate that reuses an old name.
1818
> The old crate (`0.3.0` and lower) has a bunch of problems.
19-
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.2`.
19+
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.3`.
2020
2121
CommonMark compliant markdown parser in Rust with ASTs and extensions.
2222

@@ -80,12 +80,12 @@ This Rust crate has a sibling project in JavaScript: [`micromark`][micromark]
8080
With [Rust][] (rust edition 2018+, ±version 1.56+), install with `cargo`:
8181

8282
```sh
83-
cargo add [email protected].2
83+
cargo add [email protected].3
8484
```
8585

8686
> 👉 **Note**: this is a new crate that reuses an old name.
8787
> The old crate (`0.3.0` and lower) has a bunch of problems.
88-
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.2`.
88+
> Make sure to use the new crate, currently in alpha at `1.0.0-alpha.3`.
8989
9090
## Use
9191

@@ -157,10 +157,10 @@ Root { children: [Heading { children: [Text { value: "Hey, ", position: Some(1:3
157157
## API
158158

159159
`markdown-rs` exposes
160-
[`to_html`](https://docs.rs/markdown/1.0.0-alpha.2/markdown/fn.to_html.html),
161-
[`to_html_with_options`](https://docs.rs/markdown/1.0.0-alpha.2/markdown/fn.to_html_with_options.html),
162-
[`to_mdast`](https://docs.rs/markdown/1.0.0-alpha.2/markdown/fn.to_mdast.html),
163-
[`Options`](https://docs.rs/markdown/1.0.0-alpha.2/markdown/struct.Options.html),
160+
[`to_html`](https://docs.rs/markdown/1.0.0-alpha.3/markdown/fn.to_html.html),
161+
[`to_html_with_options`](https://docs.rs/markdown/1.0.0-alpha.3/markdown/fn.to_html_with_options.html),
162+
[`to_mdast`](https://docs.rs/markdown/1.0.0-alpha.3/markdown/fn.to_mdast.html),
163+
[`Options`](https://docs.rs/markdown/1.0.0-alpha.3/markdown/struct.Options.html),
164164
and a few other structs and enums.
165165

166166
See the [crate docs][docs] for more info.
@@ -350,11 +350,11 @@ Special thanks go out to:
350350

351351
[docs-badge]: https://img.shields.io/docsrs/markdown
352352

353-
[docs]: https://docs.rs/markdown/1.0.0-alpha.2/markdown/
353+
[docs]: https://docs.rs/markdown/1.0.0-alpha.3/markdown/
354354

355355
[crate-badge]: https://img.shields.io/crates/v/markdown
356356

357-
[crate]: https://crates.io/crates/markdown/1.0.0-alpha.2
357+
[crate]: https://crates.io/crates/markdown/1.0.0-alpha.3
358358

359359
[chat]: https://github.com/wooorm/markdown-rs/discussions
360360

0 commit comments

Comments
 (0)