From 900bcbd48c58a79e5c63a06c100adda48a3aaeba Mon Sep 17 00:00:00 2001 From: skanaar Date: Mon, 11 Apr 2022 22:23:53 +0200 Subject: [PATCH] v1.5.0 --- changelog.md | 8 ++++++++ dist/nomnoml.js | 2 +- package.json | 2 +- src/index.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index d4c3fbb..4220d5d 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # Changelog +## [1.5.0] - 2022-04-11 + +- SVG output is generated with a proper element hierarchy + ## [1.4.0] - 2021-05-12 - ball and socket connections for expressing required and provided interfaces @@ -19,6 +23,7 @@ - Support Webpack **Webapp** + - Folders in file system view - Always as for filename when saving a #view url graph - Improved file system view @@ -47,17 +52,20 @@ ## [1.0.0] - 2020-09-11 ## Improved text measurement in SVG documents + - better heuristic for text width when no rendering context is available - better text measurement when rendering context is available ## [0.10.0] - 2020-08-31 ### New features + - Table is a new classifier type that displays its compartments in a uniform grid. Set the first row-break with a double pipe `||`. - Non-boxy shapes are laid out properly. Ellipses, rhombuses, and cylinders (, , and ) no longer intersect awkwardly with the arrows. ### Bug fixes + - fixed bug where SVG did not support bold text - fixed bug where SVG did not track lineWidth in push/pop of graphic state diff --git a/dist/nomnoml.js b/dist/nomnoml.js index 8d6ed19..1f60dce 100644 --- a/dist/nomnoml.js +++ b/dist/nomnoml.js @@ -2232,7 +2232,7 @@ return processImports(loadFile(rootFileName), loadFile, maxImportDepth); } - var version = '1.4.0'; + var version = '1.5.0'; exports.Classifier = Classifier; exports.Compartment = Compartment; diff --git a/package.json b/package.json index 9a2aa95..48748e4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nomnoml", - "version": "1.4.0", + "version": "1.5.0", "description": "The sassy UML renderer that generates diagrams from text", "homepage": "http://www.nomnoml.com", "author": "Daniel Kallin ", diff --git a/src/index.ts b/src/index.ts index da91a27..f15f2b7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,7 +6,7 @@ export { processAsyncImports, ImportDepthError, } from './nomnoml' -export var version = '1.4.0' +export var version = '1.5.0' export * as skanaar from './util' export { parse, intermediateParse, transformParseIntoSyntaxTree } from './parser'