Skip to content

Commit 49a11f3

Browse files
committed
Release 0.2.1
1 parent 147822f commit 49a11f3

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.2.1] - 2021-12-19
810
### Added
911
- `CMarkDocs::map_links` function to fix links including intra-doc links.
1012
- `{CMarkDocs, CMarkReadme}::{into_data, iter_events}`
@@ -50,7 +52,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5052
- Markdown transformations.
5153
- Synchronization status diagnostics.
5254

53-
[Unreleased]: https://github.com/zheland/readme-sync/compare/v0.2.0...HEAD
55+
[Unreleased]: https://github.com/zheland/readme-sync/compare/v0.2.1...HEAD
56+
[0.2.1]: https://github.com/zheland/readme-sync/compare/v0.2.0...v0.2.1
5457
[0.2.0]: https://github.com/zheland/readme-sync/compare/v0.1.1...v0.2.0
5558
[0.1.1]: https://github.com/zheland/readme-sync/compare/v0.1.0...v0.1.1
5659
[0.1.0]: https://github.com/zheland/readme-sync/compare/v0.0.1...v0.1.0

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "readme-sync"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Andrey Zheleznov <zheland.net@gmail.com>"]
55
edition = "2018"
66
description = "Checks that your readme and documentation are synchronized"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ First, add the following to your `Cargo.toml`:
2828

2929
```toml
3030
[dev-dependencies]
31-
readme-sync = "0.2.0"
31+
readme-sync = "0.2.1"
3232
```
3333

3434
Then add an integration test using the necessary readme and docs modifiers,
@@ -172,7 +172,7 @@ If you use nightly Rust you can simply use `-Z features=dev_dep` flags.
172172
Or, in any Rust release, you can disable all `readme-sync` dependencies with:
173173
```toml
174174
[dev-dependencies.readme-sync]
175-
version = "0.2.0"
175+
version = "0.2.1"
176176
default-features = false
177177
```
178178

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//!
2121
//! ```toml
2222
//! [dev-dependencies]
23-
//! readme-sync = "0.2.0"
23+
//! readme-sync = "0.2.1"
2424
//! ```
2525
//!
2626
//! Then add an integration test using the necessary readme and docs modifiers,
@@ -191,7 +191,7 @@
191191
//! Or, in any Rust release, you can disable all `readme-sync` dependencies with:
192192
//! ```toml
193193
//! [dev-dependencies.readme-sync]
194-
//! version = "0.2.0"
194+
//! version = "0.2.1"
195195
//! default-features = false
196196
//! ```
197197
//!

0 commit comments

Comments
 (0)