From 53b358ed331661037023b71aabbd0ab5a7cb0da2 Mon Sep 17 00:00:00 2001 From: Anton Lavrevov Date: Fri, 5 Sep 2025 07:46:58 -0500 Subject: [PATCH] update CHANGELOG with new version --- CHANGELOG.md | 7 ++----- README.md | 4 ++-- release.sh | 5 +---- 3 files changed, 5 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0005d171..e983506e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## 10.0.0-1 (2025-09-02) - -- Brave detection and warning - -## 10.0.0-0 (2025-08-14) +## 10.0.0 (2025-09-07) ### Breaking Changes @@ -89,6 +85,7 @@ var text = new Konva.Text({ - **Performance**: Rewrote Emboss and Solarize filters for improved performance and usability - Changed return type of `node.toImage()` +- Brave detection and warning ## 9.3.22 (2025-07-08) diff --git a/README.md b/README.md index 2e595439..859d97dd 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ This repository began as a GitHub fork of [ericdrowell/KineticJS](https://github # Quick Look ```html - +
+ ``` ### Install with npm: diff --git a/release.sh b/release.sh index aa42245d..6298ce50 100755 --- a/release.sh +++ b/release.sh @@ -5,9 +5,6 @@ old_version="$(git describe --abbrev=0 --tags)" new_version=$1 -old_cdn="https://unpkg.com/konva@${old_version}/konva.js" -new_cdn="https://unpkg.com/konva@${new_version}/konva.js" - old_cdn_min="https://unpkg.com/konva@${old_version}/konva.min.js" new_cdn_min="https://unpkg.com/konva@${new_version}/konva.min.js" @@ -59,7 +56,7 @@ git tag $1 >/dev/null cd ../konva git push >/dev/null git push --tags >/dev/null -npm publish --tag next +npm publish echo "DONE!"