Skip to content

Commit

Permalink
Update dependencies and bump version to 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusklaas committed Nov 10, 2019
1 parent f28baca commit efe10f1
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 137 deletions.
77 changes: 21 additions & 56 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pulldown-cmark"
version = "0.6.0"
version = "0.6.1"
authors = [ "Raph Levien <raph.levien@gmail.com>", "Marcus Klaas de Vries <mail@marcusklaas.nl>" ]
license = "MIT"
description = "A pull parser for CommonMark"
Expand All @@ -23,14 +23,14 @@ name = "html_rendering"
harness = false

[dependencies]
bitflags = "1.1"
bitflags = "1.2"
unicase = "2.5"
memchr = "2.2"
getopts = { version = "0.2", optional = true }

[dev-dependencies]
html5ever = "0.24"
lazy_static = "1.3"
lazy_static = "1.4"
tendril = "0.4"
criterion = "0.3"
regex = "1.3"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ By default, the binary is built as well. If you don't want/need it, then build l
Or put in your `Cargo.toml` file:

```toml
pulldown-cmark = { version = "0.5", default-features = false }
pulldown-cmark = { version = "0.6", default-features = false }
```

SIMD accelerated scanners are available for the x64 platform from version 0.5 onwards. To
Expand All @@ -139,7 +139,7 @@ enable them, build with simd feature:
Or add the feature to your project's `Cargo.toml`:

```toml
pulldown-cmark = { version = "0.5", default-features = false, features = ["simd"] }
pulldown-cmark = { version = "0.6", default-features = false, features = ["simd"] }
```

## Authors
Expand Down

3 comments on commit efe10f1

@polyzen
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This hasn't yet made it to crates.io.

@marcusklaas
Copy link
Collaborator Author

@marcusklaas marcusklaas commented on efe10f1 Nov 10, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We've run into an issue publishing this release to crates.io. I will publish as soon as I've fixed it. Shouldn't be long!

@marcusklaas
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.