diff --git a/CHANGELOG.md b/CHANGELOG.md index f63b199a..6e11a0bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [0.3.1] - 2020-06-25 + +### Changed + +- Fix links in docs + ## [0.3.0] - 2020-06-25 ### Added @@ -38,6 +44,7 @@ - Initial public release -[Unreleased]: https://github.com/Stranger6667/css-inline/compare/0.3.0...HEAD +[Unreleased]: https://github.com/Stranger6667/css-inline/compare/0.3.1...HEAD +[0.3.1]: https://github.com/Stranger6667/css-inline/compare/0.3.0...0.3.1 [0.3.0]: https://github.com/Stranger6667/css-inline/compare/0.2.0...0.3.0 [0.2.0]: https://github.com/Stranger6667/css-inline/compare/0.1.0...0.2.0 diff --git a/Cargo.toml b/Cargo.toml index e1791a67..fac98353 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "css-inline" -version = "0.3.0" +version = "0.3.1" authors = ["Dmitry Dygalo "] edition = "2018" license = "MIT" diff --git a/README.md b/README.md index 86c138e1..af7802ca 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![ci](https://github.com/Stranger6667/css-inline/workflows/ci/badge.svg)](https://github.com/Stranger6667/css-inline/actions) [![Crates.io](https://img.shields.io/crates/v/css-inline.svg)](https://crates.io/crates/css-inline) -[![docs.rs](https://docs.rs/css-inline/badge.svg?version=0.3.0)](https://docs.rs/css-inline/0.3.0/css_inline/) +[![docs.rs](https://docs.rs/css-inline/badge.svg?version=0.3.1)](https://docs.rs/css-inline/0.3.1/css_inline/) A crate for inlining CSS into HTML documents. When you send HTML emails you need to use "style" attributes instead of "style" tags. @@ -34,7 +34,7 @@ Will be turned into this: To use it in your project add the following line to your `dependencies` section in project's `Cargo.toml` file: ```toml -css-inline = "0.1" +css-inline = "0.3" ``` ## Usage diff --git a/python/Cargo.toml b/python/Cargo.toml index 11526761..854abdc8 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -15,7 +15,7 @@ built = { version = "0.4", features = ["chrono"] } [dependencies.css-inline] path = ".." -version = "= 0.3.0" +version = "= 0.3.1" default-features = false [dependencies]