update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2019-02-27 09:34:29 -05:00
parent 84cbee1975
commit a511fd8143
3 changed files with 27 additions and 26 deletions

View File

@ -3,7 +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/).
## [3.1.0][2019-02-27] ## [3.1.1][2019-02-27]
* Make `Konva` modular: `import Konva from 'konva/lib/Core';`; * Make `Konva` modular: `import Konva from 'konva/lib/Core';`;
* Fix incorrect `Transformer` behavior * Fix incorrect `Transformer` behavior

View File

@ -23,7 +23,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@2.4.1/konva.js"></script> <script src="https://unpkg.com/konva@3.1.0/konva.js"></script>
<div id="container"></div> <div id="container"></div>
<script> <script>
var stage = new Konva.Stage({ var stage = new Konva.Stage({
@ -68,10 +68,10 @@ Konva supports UMD loading. So you can use all possible variants to load the fra
### 1 Load Konva via classical `<script>` tag: ### 1 Load Konva via classical `<script>` tag:
```html ```html
<script src="https://unpkg.com/konva@2.4.1/konva.js"></script> <script src="https://unpkg.com/konva@3.1.0/konva.js"></script>
``` ```
You can use CDN: [https://unpkg.com/konva@2.4.1/konva.js](https://unpkg.com/konva@2.4.1/konva.js) You can use CDN: [https://unpkg.com/konva@3.1.0/konva.js](https://unpkg.com/konva@3.1.0/konva.js)
### 2 Load via AMD (requirejs): ### 2 Load via AMD (requirejs):

View File

@ -29,42 +29,44 @@ while true; do
done done
echo "Pulling" echo "Pulling"
git pull git pull >/dev/null
echo "lint and test" echo "Lint, build and test"
npm run lint npm run lint >/dev/null
npm run build npm run build >/dev/null
echo "commit change log updates" echo "commit change log updates"
git commit -am "update CHANGELOG with new version" --allow-empty git commit -am "update CHANGELOG with new version" --allow-empty >/dev/null
echo "npm version $1 --no-git-tag-version" echo "npm version $1 --no-git-tag-version"
npm version $1 --no-git-tag-version --allow-same-version npm version $1 --no-git-tag-version --allow-same-version >/dev/null
echo "build for $1" echo "build for $1"
npm run build npm run build >/dev/null
git commit -am "build for $1" --allow-empty git commit -am "build for $1" --allow-empty >/dev/null
echo "update CDN link in REAME" echo "update CDN link in REAME"
perl -i -pe "s|${old_cdn_min}|${new_cdn_min}|g" ./README.md perl -i -pe "s|${old_cdn_min}|${new_cdn_min}|g" ./README.md >/dev/null
git commit -am "update cdn link" --allow-empty git commit -am "update cdn link" --allow-empty >/dev/null
echo "generate documentation"
npm start api
echo "create new git tag" echo "create new git tag"
git tag $1 git tag $1 >/dev/null
echo "generate documentation"
npm start api >/dev/null
echo "archive documentation" echo "archive documentation"
zip -r konva-v${new_version}-documentation.zip ./api/* zip -r konva-v${new_version}-documentation.zip ./api/* >/dev/null
rm -r ./api rm -r ./api >/dev/null
echo "documentation is generated" echo "documentation is generated"
echo "include konva-v${new_version}-documentation.zip into version in github" echo "include konva-v${new_version}-documentation.zip into version in github"
cd ../konva cd ../konva
git push git push >/dev/null
git push --tags git push --tags >/dev/null
npm publish npm publish
echo "copy konva.js into konva-site" echo "copy konva.js into konva-site"
@ -74,12 +76,11 @@ cd ../konva-site
echo "replace CDN links" echo "replace CDN links"
find source themes -exec perl -i -pe "s|${old_cdn}|${new_cdn}|g" {} + find source themes -exec perl -i -pe "s|${old_cdn}|${new_cdn}|g" {} + >/dev/null
find source themes -exec perl -i -pe "s|${old_cdn_min}|${new_cdn_min}|g" {} + >/dev/null
find source themes -exec perl -i -pe "s|${old_cdn_min}|${new_cdn_min}|g" {} +
echo "regenerate site" echo "regenerate site"
./deploy.sh ./deploy.sh >/dev/null
echo "DONE!" echo "DONE!"