chore(release): prepare version 0.2.0
parent
13211edb28
commit
487e4b767e
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,14 +1,17 @@
|
|||
# `maxGraph` Change Log
|
||||
|
||||
## UNRELEASED
|
||||
## 0.2.0
|
||||
|
||||
This release contains bug fixes and documentation improvements.
|
||||
|
||||
**Breaking Changes**:
|
||||
- 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.
|
||||
- some types related to `CellStateStyle` have been renamed.
|
||||
- some properties of `CellStateStyle` have changed (removed or renamed).
|
||||
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. 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). 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
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@maxgraph/core",
|
||||
"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.",
|
||||
"main": "dist/maxgraph.js",
|
||||
"module": "dist/esm/index.js",
|
||||
|
|
|
@ -20,7 +20,7 @@ class Client {
|
|||
/**
|
||||
* 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.
|
||||
|
|
Loading…
Reference in New Issue