Skip to content

Commit

Permalink
Merge pull request #126 from tommilligan/prep-1.12.0
Browse files Browse the repository at this point in the history
chore: prep v1.12.0 release
  • Loading branch information
tommilligan authored Sep 16, 2023
2 parents 8e68cf9 + 1877fd1 commit 496e8f7
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 53 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 1.12.0

### Added

- Admonitions are now supported when indented inside other elements, such as a list. Thanks to [@mattburgess](https://github.com/mattburgess) for the report! ([#124](https://github.com/tommilligan/mdbook-admonish/pull/124)

## 1.11.1

### Fixed
Expand Down
90 changes: 45 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdbook-admonish"
version = "1.11.1"
version = "1.12.0"
edition = "2021"

authors = ["Tom Milligan <[email protected]>"]
Expand All @@ -25,22 +25,22 @@ name = "mdbook_admonish"
path = "src/lib.rs"

[dependencies]
anyhow = "1.0.72"
anyhow = "1.0.75"
clap = { version = "4", default_features = false, features = ["std", "derive"], optional = true }
env_logger = { version = "0.10", default_features = false, optional = true }
log = "0.4.19"
log = "0.4.20"
mdbook = "0.4.34"
once_cell = "1.18.0"
pulldown-cmark = "0.9.3"
regex = "1.9.3"
regex = "1.9.5"
semver = "1.0.18"
serde = { version = "1.0.183", features = ["derive"] }
serde_json = "1.0.104"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
# The version of toml that mdbook uses internally (and uses in it's public api)
# Only used for compatilibilty with the mdbook public api
toml_mdbook = { package = "toml", version = "0.5.11" }
toml = "0.7.6"
toml_edit = { version = "0.19.14", optional = true }
toml = "0.7.8"
toml_edit = { version = "0.19.15", optional = true }

[dev-dependencies]
pretty_assertions = "1.4.0"
Expand Down

0 comments on commit 496e8f7

Please sign in to comment.