Skip to content

Commit

Permalink
Fix type with cache-answers key. Release 0.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
willcrichton committed Oct 1, 2024
1 parent d0303dd commit 963850b
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/mdbook-quiz-schema/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdbook-quiz-schema"
version = "0.3.9"
version = "0.3.10"
authors = ["Will Crichton <[email protected]>"]
description = "Schema for quizzes used in mdbook-quiz"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/mdbook-quiz-validate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mdbook-quiz-validate"
version = "0.3.9"
version = "0.3.10"
authors = ["Will Crichton <[email protected]>"]
description = "Input validation for quizzes used in mdbook-quiz"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/mdbook-quiz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "mdbook-quiz"
authors = ["Will Crichton <[email protected]>"]
description = "Interactive quizzes for your mdBook"
license = "MIT OR Apache-2.0"
version = "0.3.9"
version = "0.3.10"
edition = "2021"
include = ["/src", "/js"]
repository = "https://github.com/cognitive-engineering-lab/mdbook-quiz"
Expand Down
2 changes: 1 addition & 1 deletion crates/mdbook-quiz/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ impl QuizPreprocessor {
}
if let Some(true) = self.config.cache_answers {
if !self.config.dev_mode {
html.data("quiz-quiz-cache-answers", true)?;
html.data("quiz-cache-answers", true)?;
}
}
if let Some(lang) = &self.config.default_language {
Expand Down
2 changes: 1 addition & 1 deletion js/packages/quiz-embed/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wcrichto/quiz-embed",
"version": "0.3.9",
"version": "0.3.10",
"depot": {
"platform": "browser"
},
Expand Down
2 changes: 1 addition & 1 deletion js/packages/quiz/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wcrichto/quiz",
"version": "0.3.9",
"version": "0.3.10",
"files": [
"dist"
],
Expand Down

0 comments on commit 963850b

Please sign in to comment.