From 72bc8c50806645e9794507e827a4e06c4c3fa0a2 Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Fri, 21 May 2021 11:01:24 -0500 Subject: [PATCH] update CHANGELOG with new version --- CHANGELOG.md | 2 +- release.sh | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ee7898a..88a82be9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). -## **NOT RELEASED V8** +## 8.0.0 This is a very large release! The long term of `Konva` API is to make it simpler and faster. So when possible I am trying to optimize the code and remove unpopular/confusing API methods. diff --git a/release.sh b/release.sh index e9701cb0..f91e1db7 100755 --- a/release.sh +++ b/release.sh @@ -34,9 +34,9 @@ echo "New version: ${new_version}" echo "Pulling" git pull >/dev/null -echo "Lint, build and test" -npm run lint >/dev/null -npm run full-build >/dev/null +echo "build and test" +npm run build >/dev/null +npm run test echo "commit change log updates"