diff --git a/README.md b/README.md index 6d088f4..c591405 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ crate which includes a fully featured date parser, capable of parsing dates like ```toml [dependencies] -quick-js-dtp = "0.4.1" +quick-js = "0.4.1" ``` ```rust @@ -55,13 +55,10 @@ The crate supports the following features: * `log`: allows forwarding `console.log` messages to the `log` crate. Note: must be enabled with `ContextBuilder::console(quick_js::console::LogConsole);` -* `patch-bigint` +* `patched` Enabled automatically for some other features, like `bigint`. You should not need to enable this manually. - -* `patch-dateparser` - Enables the improved JS date parser that supports additional date formats like - `Sat, 01-Jan-2000 00:00:00 PST` + Applies QuickJS patches that can be found in `libquickjs-sys/embed/patches` directory. ## Installation diff --git a/release.toml b/release.toml index 86d7edd..95b720b 100644 --- a/release.toml +++ b/release.toml @@ -1,7 +1,7 @@ # Configuration for the [cargo-release](https://github.com/sunng87/cargo-release) tool. pre-release-replacements = [ - {file="README.md", search="quick-js-dtp = .*", replace="{{crate_name}} = \"{{version}}\""}, + {file="README.md", search="quick-js = .*", replace="{{crate_name}} = \"{{version}}\""}, ] tag-prefix = "quick-js-dtp-"