From c422ca35ee87893aa2878b96c693aa374ae1ff4d Mon Sep 17 00:00:00 2001 From: Thomas Bouffard <27200110+tbouffard@users.noreply.github.com> Date: Fri, 7 Jul 2023 07:50:07 +0200 Subject: [PATCH] chore(release): prepare version 0.3.0 --- CHANGELOG.md | 9 +++++++-- packages/core/package.json | 2 +- packages/core/src/Client.ts | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c3af90f0..71cb6193e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ # `maxGraph` Change Log -## Unreleased +## 0.3.0 + +This release contains new features, bug fixes and documentation improvements. **Breaking Changes** -- `Stylesheet.getDefaultVertexStyle` and `Stylesheet.getDefaultEdgeStyle` no longer return `undefined`. +- types: `Stylesheet.getDefaultVertexStyle` and `Stylesheet.getDefaultEdgeStyle` no longer return `undefined`. - remove the `CellMap` type. It was not used in the maxGraph code, which should have no impact. +For more details, see the [0.3.0 Changelog](https://github.com/maxGraph/maxGraph/releases/tag/v0.3.0) on +the GitHub release page. + ## 0.2.1 This is a bug fix release. diff --git a/packages/core/package.json b/packages/core/package.json index 553626d3e..ecae625ea 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,7 +1,7 @@ { "name": "@maxgraph/core", "license": "Apache-2.0", - "version": "0.2.1", + "version": "0.3.0", "description": "maxGraph is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.", "keywords": [ "browser", diff --git a/packages/core/src/Client.ts b/packages/core/src/Client.ts index 745d644b3..a12a5d35e 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.2.1'; + static VERSION = '0.3.0'; /** * Base path for all URLs in the core without trailing slash.