Skip to content

Commit

Permalink
Bump version to 0.2.1.
Browse files Browse the repository at this point in the history
Missed one "must" from #57
  • Loading branch information
emackey committed Aug 16, 2021
1 parent 15e63e5 commit 63d93d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

### 0.2.0 - 2021-08-16
### 0.2.0, 0.2.1 - 2021-08-16

* Added a new option to configure a keyword for "must" in hard-coded descriptions. [#57](https://github.com/CesiumGS/wetzel/pull/57)

Expand Down
2 changes: 1 addition & 1 deletion lib/generateMarkdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ function createPropertiesDetails(schema, title, headerLevel, knownTypes, autoLin

var itemsString = getEnumString(items, type, 2);
if (defined(itemsString)) {
md += style.bulletItem('Each element in the array must be one of the following values:', 1) + itemsString;
md += style.bulletItem(eachElementInTheArrayMust + 'be one of the following values:', 1) + itemsString;
}
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wetzel",
"version": "0.2.0",
"version": "0.2.1",
"description": "Generate Markdown or AsciiDoctor documentation from JSON Schema",
"license": "Apache-2.0",
"author": {
Expand Down

0 comments on commit 63d93d9

Please sign in to comment.