Skip to content

Commit

Permalink
v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed May 21, 2023
1 parent 1dc59ba commit 8777618
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [1.6.1] - 2022-05-21

- Restore parser behavior where comments are only supported at the start of a line

## [1.6.0] - 2022-05-16

- Rewritten parser
Expand Down
2 changes: 1 addition & 1 deletion dist/nomnoml.js
Original file line number Diff line number Diff line change
Expand Up @@ -1793,7 +1793,7 @@
return processImports(loadFile(rootFileName), loadFile, maxImportDepth);
}

var version = '1.6.0';
var version = '1.6.1';

exports.ImportDepthError = ImportDepthError;
exports.ParseError = ParseError;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nomnoml",
"version": "1.6.0",
"version": "1.6.1",
"description": "The sassy UML renderer that generates diagrams from text",
"homepage": "http://www.nomnoml.com",
"author": "Daniel Kallin <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export {
processAsyncImports,
ImportDepthError,
} from './nomnoml'
export var version = '1.6.0'
export var version = '1.6.1'

export * as skanaar from './util'
export { parse, ParseError } from './parser'
Expand Down

0 comments on commit 8777618

Please sign in to comment.