From 487e4b767efe537eecc6a09ed8be17bdcdce52b4 Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Mon, 22 May 2023 14:59:13 +0200 Subject: [PATCH] chore(release): prepare version 0.2.0 --- CHANGELOG.md | 11 +++++++---- packages/core/package.json | 2 +- packages/core/src/Client.ts | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 607676f25..6ddaccc78 100644 --- a/CHANGELOG.md +++ b/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 diff --git a/packages/core/package.json b/packages/core/package.json index 3e895e1f0..bbd6c3302 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -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", diff --git a/packages/core/src/Client.ts b/packages/core/src/Client.ts index b1d595777..8840085df 100644 --- a/packages/core/src/Client.ts +++ b/packages/core/src/Client.ts @@ -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.