Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
skanaar committed Sep 11, 2020
1 parent 6255a7a commit 380ab97
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [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
Expand Down
2 changes: 1 addition & 1 deletion dist/nomnoml.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ var nomnoml;
})(nomnoml || (nomnoml = {}));
var nomnoml;
(function (nomnoml) {
nomnoml.version = '0.10.0';
nomnoml.version = '1.0.0';
function fitCanvasSize(canvas, rect, zoom) {
canvas.width = rect.width * zoom;
canvas.height = rect.height * zoom;
Expand Down
2 changes: 1 addition & 1 deletion 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": "0.10.0",
"version": "1.0.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/nomnoml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface Nomnoml {

namespace nomnoml {

export var version = '0.10.0'
export var version = '1.0.0'

export interface SetFont {
(config: Config, isBold: string, isItalic?: string): void
Expand Down

0 comments on commit 380ab97

Please sign in to comment.