chore(release): prepare version 0.2.0

development
Thomas Bouffard 2023-05-22 14:59:13 +02:00
parent 13211edb28
commit 487e4b767e
3 changed files with 9 additions and 6 deletions

View File

@ -1,14 +1,17 @@
# `maxGraph` Change Log # `maxGraph` Change Log
## UNRELEASED ## 0.2.0
This release contains bug fixes and documentation improvements.
**Breaking Changes**: **Breaking Changes**:
- helper functions involving _style in the string form_ have been removed from `styleUtils`. Styles are defined using - helper functions involving _style in the string form_ have been removed from `styleUtils`. Styles are defined using
the `CellStateStyle` and it is no longer necessary to process strings. the `CellStateStyle` and it is no longer necessary to process strings. For more details, see [PR #173](https://github.com/maxGraph/maxGraph/pull/173) and commit [5ecfda6](https://github.com/maxGraph/maxGraph/commit/5ecfda6b2b326c86597a3e3a6c4fb0548d3666b8).
- some types related to `CellStateStyle` have been renamed. - some types related to `CellStateStyle` have been renamed. For more details, see [PR #165](https://github.com/maxGraph/maxGraph/pull/165) and commit [ca1914b](https://github.com/maxGraph/maxGraph/commit/ca1914b5824eed253556df585337aa07d974e920).
- some properties of `CellStateStyle` have changed (removed or renamed). - some properties of `CellStateStyle` have changed (removed or renamed). The renamed properties better match the former `mxGraph` properties. For more details, see [PR #165](https://github.com/maxGraph/maxGraph/pull/165) and commit [ca1914b](https://github.com/maxGraph/maxGraph/commit/ca1914b5824eed253556df585337aa07d974e920).
For more details, see the [0.2.0 Changelog](https://github.com/maxGraph/maxGraph/releases/tag/v0.1.0) on
the GitHub release page.
## 0.1.0 ## 0.1.0

View File

@ -1,7 +1,7 @@
{ {
"name": "@maxgraph/core", "name": "@maxgraph/core",
"license": "Apache-2.0", "license": "Apache-2.0",
"version": "0.1.0", "version": "0.2.0",
"description": "maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.", "description": "maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
"main": "dist/maxgraph.js", "main": "dist/maxgraph.js",
"module": "dist/esm/index.js", "module": "dist/esm/index.js",

View File

@ -20,7 +20,7 @@ class Client {
/** /**
* Contains the current version of the maxGraph library. * Contains the current version of the maxGraph library.
*/ */
static VERSION = '0.1.0'; static VERSION = '0.2.0';
/** /**
* Base path for all URLs in the core without trailing slash. * Base path for all URLs in the core without trailing slash.