update CHANGELOG with new version

This commit is contained in:
Anton Lavrevov
2025-09-05 07:46:58 -05:00
parent 1721ced50f
commit 53b358ed33
3 changed files with 5 additions and 11 deletions

View File

@@ -3,11 +3,7 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## 10.0.0-1 (2025-09-02) ## 10.0.0 (2025-09-07)
- Brave detection and warning
## 10.0.0-0 (2025-08-14)
### Breaking Changes ### Breaking Changes
@@ -89,6 +85,7 @@ var text = new Konva.Text({
- **Performance**: Rewrote Emboss and Solarize filters for improved performance and usability - **Performance**: Rewrote Emboss and Solarize filters for improved performance and usability
- Changed return type of `node.toImage()` - Changed return type of `node.toImage()`
- Brave detection and warning
## 9.3.22 (2025-07-08) ## 9.3.22 (2025-07-08)

View File

@@ -22,7 +22,7 @@ This repository began as a GitHub fork of [ericdrowell/KineticJS](https://github
# Quick Look # Quick Look
```html ```html
<script src="https://unpkg.com/konva@9/konva.min.js"></script> <script src="https://unpkg.com/konva@10.0.0-1/konva.min.js"></script>
<div id="container"></div> <div id="container"></div>
<script> <script>
var stage = new Konva.Stage({ var stage = new Konva.Stage({
@@ -75,7 +75,7 @@ Konva supports UMD loading. So you can use all possible variants to load the fra
### Load Konva via classical `<script>` tag from CDN: ### Load Konva via classical `<script>` tag from CDN:
```html ```html
<script src="https://unpkg.com/konva@9/konva.min.js"></script> <script src="https://unpkg.com/konva@10.0.0-1/konva.min.js"></script>
``` ```
### Install with npm: ### Install with npm:

View File

@@ -5,9 +5,6 @@ old_version="$(git describe --abbrev=0 --tags)"
new_version=$1 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" old_cdn_min="https://unpkg.com/konva@${old_version}/konva.min.js"
new_cdn_min="https://unpkg.com/konva@${new_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 cd ../konva
git push >/dev/null git push >/dev/null
git push --tags >/dev/null git push --tags >/dev/null
npm publish --tag next npm publish
echo "DONE!" echo "DONE!"