Skip to content

Commit

Permalink
v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Apr 11, 2022
1 parent d8f92d9 commit 900bcbd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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 (<usecase>, <choice>, and <database>) 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

Expand Down
2 changes: 1 addition & 1 deletion dist/nomnoml.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
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.4.0",
"version": "1.5.0",
"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.4.0'
export var version = '1.5.0'

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

0 comments on commit 900bcbd

Please sign in to comment.