Skip to content

Commit

Permalink
Merge branch 'main' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
ecton committed Sep 16, 2024
2 parents 94e031d + 5f3d1d3 commit b83e5de
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,23 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.4.0 (2024-09-16)

### Breaking Changes

- `pulldown-cmark` has been updated to `0.12`. Thank you to @sbuller for this
work!

## 0.3.0 (2024-07-30)

## Breaking Changes
### Breaking Changes

- `pulldown-cmark` has been updated to `0.11.0`. Thank you to @sbuller for this
work!

## 0.2.0 (2023-09-21)

## Added
### Added

- `FrontmatterExtractor::extracted()` is a new function that returns true once
the extractor has determined the frontmatter is fully extracted.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pulldown-cmark-frontmatter"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "A Frontmatter extractor for Markdown documents"
Expand All @@ -11,12 +11,12 @@ readme = "./README.md"
rust-version = "1.58"

[dependencies]
pulldown-cmark = { version = "0.11.0", default-features = false }
pulldown-cmark = { version = "0.12", default-features = false }

[dev-dependencies]
serde = { version = "1.0.152", features = ["derive"] }
toml = "0.8.0"
pulldown-cmark = { version = "0.11.0", default-features = false, features = [
pulldown-cmark = { version = "0.12", default-features = false, features = [
"html",
] }

Expand Down

0 comments on commit b83e5de

Please sign in to comment.