Skip to content

Commit

Permalink
v1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Apr 12, 2022
1 parent a301fab commit 928b5a5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [1.5.1] - 2022-04-13

- Fix a bug where SVGs did not include their source in the desc tag
- Fix a bug where table nodes produced invalid SVG

## [1.5.0] - 2022-04-11

- SVG output is generated with a proper element hierarchy
Expand Down
2 changes: 1 addition & 1 deletion dist/nomnoml.js
Original file line number Diff line number Diff line change
Expand Up @@ -2236,7 +2236,7 @@
return processImports(loadFile(rootFileName), loadFile, maxImportDepth);
}

var version = '1.5.0';
var version = '1.5.1';

exports.Classifier = Classifier;
exports.Compartment = Compartment;
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": "nomnoml",
"version": "1.5.0",
"version": "1.5.1",
"description": "The sassy UML renderer that generates diagrams from text",
"homepage": "http://www.nomnoml.com",
"author": "Daniel Kallin <daniel.kallin@gmail.com>",
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.5.0'
export var version = '1.5.1'

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

0 comments on commit 928b5a5

Please sign in to comment.