Skip to content

Commit 257d5be

Browse files
committed
chore(rust): Release 0.8.0
1 parent 2271f19 commit 257d5be

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/rust-release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ jobs:
1818
- run: cargo login ${CRATES_IO_TOKEN}
1919
env:
2020
CRATES_IO_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
21-
- run: cargo publish
22-
working-directory: ./css-inline
21+
- run: cargo publish --manifest-path css-inline/Cargo.toml

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.8.0] - 2022-01-09
6+
57
### Added
68

79
- Separate `InlineError::MissingStyleSheet` error variant to improve debugging experience. [#124](https://github.com/Stranger6667/css-inline/issues/124)
@@ -178,7 +180,8 @@
178180

179181
- Initial public release
180182

181-
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/rust-v0.7.6...HEAD
183+
[Unreleased]: https://github.com/Stranger6667/css-inline/compare/rust-v0.8.0...HEAD
184+
[0.8.0]: https://github.com/Stranger6667/css-inline/compare/rust-v0.7.6...rust-v0.8.0
182185
[0.7.6]: https://github.com/Stranger6667/css-inline/compare/rust-v0.7.5...rust-v0.7.6
183186
[0.7.5]: https://github.com/Stranger6667/css-inline/compare/rust-v0.7.4...rust-v0.7.5
184187
[0.7.4]: https://github.com/Stranger6667/css-inline/compare/rust-v0.7.3...rust-v0.7.4

css-inline/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.7.6"
3+
version = "0.8.0"
44
authors = ["Dmitry Dygalo <dadygalo@gmail.com>"]
55
edition = "2018"
66
license = "MIT"

css-inline/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../README.md

css-inline/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc = include_str!("../../README.md")]
1+
#![doc = include_str!("../README.md")]
22
#![warn(
33
clippy::doc_markdown,
44
clippy::redundant_closure,

0 commit comments

Comments
 (0)