Skip to content

Commit

Permalink
v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Jun 26, 2023
1 parent 8a6d887 commit d8d7c99
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
8 changes: 6 additions & 2 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
# Changelog

## [1.6.1] - 2022-05-21
## [1.6.2] - 2023-06-26

- Fix bug where hash character was interpreted as a directive in the middle of a line

## [1.6.1] - 2023-05-21

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

## [1.6.0] - 2022-05-16
## [1.6.0] - 2023-05-16

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

var version = '1.6.1';
var version = '1.6.2';

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.1",
"version": "1.6.2",
"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.1'
export var version = '1.6.2'

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

0 comments on commit d8d7c99

Please sign in to comment.