Skip to content

Commit

Permalink
chore: Rust release 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Stranger6667 committed Aug 7, 2020
1 parent fb3962a commit 18c9b95
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [0.5.0] - 2020-08-07

### Added

- `CSSInliner::options()` that implements the Builder pattern. [#71](https://github.com/Stranger6667/css-inline/issues/71)
Expand Down Expand Up @@ -92,7 +94,8 @@

- Initial public release

[Unreleased]: https://github.com/Stranger6667/css-inline/compare/0.4.0...HEAD
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/0.5.0...HEAD
[0.5.0]: https://github.com/Stranger6667/css-inline/compare/0.4.0...0.5.0
[0.4.0]: https://github.com/Stranger6667/css-inline/compare/0.3.3...0.4.0
[0.3.3]: https://github.com/Stranger6667/css-inline/compare/0.3.2...0.3.3
[0.3.2]: https://github.com/Stranger6667/css-inline/compare/0.3.1...0.3.2
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "css-inline"
version = "0.4.0"
version = "0.5.0"
authors = ["Dmitry Dygalo <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.4.0)](https://docs.rs/css-inline/0.4.0/css_inline/)
[![docs.rs](https://docs.rs/css-inline/badge.svg?version=0.5.0)](https://docs.rs/css-inline/0.5.0/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.

Expand Down Expand Up @@ -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.4"
css-inline = "0.5"
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ built = { version = "0.4", features = ["chrono"] }

[dependencies.css-inline]
path = ".."
version = "= 0.4.0"
version = "= 0.5.0"
default-features = false

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ crate-type = ["cdylib"]

[dependencies.css-inline]
path = ".."
version = "= 0.4.0"
version = "= 0.5.0"
default-features = false

[dependencies]
Expand Down

0 comments on commit 18c9b95

Please sign in to comment.