Skip to content

Commit

Permalink
v1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Dec 1, 2024
1 parent b6debb0 commit 6987ba9
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.3] - 2024-12-01

- Fix bug when running `nomnoml-cli` with input files in the same directory.

## [1.6.2] - 2023-06-26

- Fix bug where hash character was interpreted as a directive in the middle of a line
Expand Down
2 changes: 1 addition & 1 deletion dist/nomnoml.js
Original file line number Diff line number Diff line change
Expand Up @@ -1744,7 +1744,7 @@
return processImports(loadFile(rootFileName), loadFile, maxImportDepth);
}

const version = '1.6.2';
const version = '1.6.3';

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.2",
"version": "1.6.3",
"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 const version = '1.6.2'
export const version = '1.6.3'

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

0 comments on commit 6987ba9

Please sign in to comment.