Skip to content

Commit d8d7c99

Browse files
committed
v1.6.2
1 parent 8a6d887 commit d8d7c99

5 files changed

Lines changed: 11 additions & 7 deletions

File tree

changelog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
# Changelog
22

3-
## [1.6.1] - 2022-05-21
3+
## [1.6.2] - 2023-06-26
4+
5+
- Fix bug where hash character was interpreted as a directive in the middle of a line
6+
7+
## [1.6.1] - 2023-05-21
48

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

7-
## [1.6.0] - 2022-05-16
11+
## [1.6.0] - 2023-05-16
812

913
- Rewritten parser
1014
- Chain multiple associations on a single line

dist/nomnoml.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1782,7 +1782,7 @@
17821782
return processImports(loadFile(rootFileName), loadFile, maxImportDepth);
17831783
}
17841784

1785-
var version = '1.6.1';
1785+
var version = '1.6.2';
17861786

17871787
exports.ImportDepthError = ImportDepthError;
17881788
exports.ParseError = ParseError;

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nomnoml",
3-
"version": "1.6.1",
3+
"version": "1.6.2",
44
"description": "The sassy UML renderer that generates diagrams from text",
55
"homepage": "http://www.nomnoml.com",
66
"author": "Daniel Kallin <daniel.kallin@gmail.com>",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export {
66
processAsyncImports,
77
ImportDepthError,
88
} from './nomnoml'
9-
export var version = '1.6.1'
9+
export var version = '1.6.2'
1010

1111
export * as skanaar from './util'
1212
export { parse, ParseError } from './parser'

0 commit comments

Comments
 (0)