Skip to content

Commit 1506572

Browse files
committed
1.0.0
1 parent fb7fdec commit 1506572

File tree

3 files changed

+9
-22
lines changed

3 files changed

+9
-22
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.24"
41+
version = "1.0.0"
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.24" }
2+
markdown = { path = "../", version = "1.0.0" }
33
regex = { version = "1" }
44

55
[dev-dependencies]

readme.md

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,6 @@
1111
[![Build][badge-build-image]][badge-build-url]
1212
[![Coverage][badge-coverage-image]][badge-coverage-url]
1313

14-
> 👉 **Note**:
15-
> this is a new crate that reuses an old name.
16-
> The old crate (`0.3.0` and lower) has a bunch of problems.
17-
> Make sure to use the new crate,
18-
> currently in alpha at `1.0.0-alpha.24`.
19-
2014
CommonMark compliant markdown parser in Rust with ASTs and extensions.
2115

2216
## Feature highlights
@@ -106,16 +100,9 @@ With [Rust][]
106100
install with `cargo`:
107101

108102
```sh
109-
cargo add markdown@1.0.0-alpha.24
103+
cargo add markdown
110104
```
111105

112-
> 👉 **Note**:
113-
> this is a new crate that reuses an old name.
114-
> The old crate (`0.3.0` and lower)
115-
> has a bunch of problems.
116-
> Make sure to use the new crate,
117-
> currently in alpha at `1.0.0-alpha.24`.
118-
119106
## Use
120107

121108
```rs
@@ -179,10 +166,10 @@ Root { children: [Heading { children: [Text { value: "Hi ", position: Some(1:3-1
179166
## API
180167

181168
`markdown-rs` exposes
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),
169+
[`to_html`](https://docs.rs/markdown/latest/markdown/fn.to_html.html),
170+
[`to_html_with_options`](https://docs.rs/markdown/latest/markdown/fn.to_html_with_options.html),
171+
[`to_mdast`](https://docs.rs/markdown/latest/markdown/fn.to_mdast.html),
172+
[`Options`](https://docs.rs/markdown/latest/markdown/struct.Options.html),
186173
and a few other structs and enums.
187174

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

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

402-
[docs]: https://docs.rs/markdown/1.0.0-alpha.24/markdown/
389+
[docs]: https://docs.rs/markdown/latest/markdown/
403390

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

406393
[repo]: https://github.com/wooorm/markdown-rs
407394

0 commit comments

Comments
 (0)