Skip to content

Commit 18c9b95

Browse files
committed
chore: Rust release 0.5.0
1 parent fb3962a commit 18c9b95

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [0.5.0] - 2020-08-07
6+
57
### Added
68

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

9395
- Initial public release
9496

95-
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/0.4.0...HEAD
97+
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/0.5.0...HEAD
98+
[0.5.0]: https://github.com/Stranger6667/css-inline/compare/0.4.0...0.5.0
9699
[0.4.0]: https://github.com/Stranger6667/css-inline/compare/0.3.3...0.4.0
97100
[0.3.3]: https://github.com/Stranger6667/css-inline/compare/0.3.2...0.3.3
98101
[0.3.2]: https://github.com/Stranger6667/css-inline/compare/0.3.1...0.3.2

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "css-inline"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
authors = ["Dmitry Dygalo <[email protected]>"]
55
edition = "2018"
66
license = "MIT"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![ci](https://github.com/Stranger6667/css-inline/workflows/ci/badge.svg)](https://github.com/Stranger6667/css-inline/actions)
44
[![Crates.io](https://img.shields.io/crates/v/css-inline.svg)](https://crates.io/crates/css-inline)
5-
[![docs.rs](https://docs.rs/css-inline/badge.svg?version=0.4.0)](https://docs.rs/css-inline/0.4.0/css_inline/)
5+
[![docs.rs](https://docs.rs/css-inline/badge.svg?version=0.5.0)](https://docs.rs/css-inline/0.5.0/css_inline/)
66

77
A crate for inlining CSS into HTML documents. When you send HTML emails you need to use "style" attributes instead of "style" tags.
88

@@ -34,7 +34,7 @@ Will be turned into this:
3434
To use it in your project add the following line to your `dependencies` section in project's `Cargo.toml` file:
3535

3636
```toml
37-
css-inline = "0.4"
37+
css-inline = "0.5"
3838
```
3939

4040
## Usage

python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ built = { version = "0.4", features = ["chrono"] }
1515

1616
[dependencies.css-inline]
1717
path = ".."
18-
version = "= 0.4.0"
18+
version = "= 0.5.0"
1919
default-features = false
2020

2121
[dependencies]

wasm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ crate-type = ["cdylib"]
1818

1919
[dependencies.css-inline]
2020
path = ".."
21-
version = "= 0.4.0"
21+
version = "= 0.5.0"
2222
default-features = false
2323

2424
[dependencies]

0 commit comments

Comments
 (0)