Skip to content

Commit

Permalink
bump version to 3.0.1 , add LICENSE to all/3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanpopelyshev committed Apr 29, 2021
1 parent 72354b5 commit 5bb2c00
Show file tree
Hide file tree
Showing 12 changed files with 51 additions and 45 deletions.
13 changes: 7 additions & 6 deletions bundles/all-3.8/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@pixi-spine/all-3.8",
"version": "3.0.0",
"version": "3.0.1",
"description": "Pixi integration with EsotericSoftware Spine, big, contains runtime for 3.8",
"main": "lib/all-3.8.js",
"module": "lib/all-3.8.es.js",
"bundle": "dist/pixi-spine-3.8.umd.js",
"types": "./index.d.ts",
"namespace": "PIXI.spine",
"dependencies": {
"@pixi-spine/base": "~3.0.0",
"@pixi-spine/loader-3.8": "~3.0.0",
"@pixi-spine/loader-base": "~3.0.0",
"@pixi-spine/runtime-3.8": "~3.0.0"
"@pixi-spine/base": "~3.0.1",
"@pixi-spine/loader-3.8": "~3.0.1",
"@pixi-spine/loader-base": "~3.0.1",
"@pixi-spine/runtime-3.8": "~3.0.1"
},
"scripts": {
"build": "rollup -c rollup.config.js --silent",
Expand All @@ -24,7 +24,8 @@
"files": [
"lib",
"dist",
"*.d.ts"
"*.d.ts",
"SPINE-LICENSE"
],
"keywords": [
"pixi.js",
Expand Down
11 changes: 11 additions & 0 deletions bundles/pixi-spine/CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "pixi-spine",
"entries": [
{
"version": "3.0.1",
"tag": "pixi-spine_v3.0.1",
"date": "Thu, 29 Apr 2021 14:01:08 GMT",
"comments": {}
}
]
}
16 changes: 5 additions & 11 deletions bundles/pixi-spine/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,9 @@
# Change Log - @pixi-spine
# Change Log - pixi-spine

## 3.0.0
This log was last generated on Thu, 29 Apr 2021 14:01:08 GMT and should not be manually modified.

_Initial release_
## 3.0.1
Thu, 29 Apr 2021 14:01:08 GMT

### Breaking changes
_Initial release_

- Start using `rush` build tool
- Combine spine runtimes `3.7`, `3.8` and `4.0` in main bundle
- Finally pixi-spine does not require PIXI to be in global scope
- Vanilla JS supported with restriction: only `3.8` classes are exposed in global scope, however `3.7` and `4.0 ` models work anyway

### Patches
- AttachmentTimeline animation does not squish meshes anymore (https://github.com/pixijs/pixi-spine/pull/385)
14 changes: 7 additions & 7 deletions bundles/pixi-spine/package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "pixi-spine",
"version": "3.0.0",
"version": "3.0.1",
"description": "Pixi integration with EsotericSoftware Spine, big, contains all runtimes",
"main": "lib/all.js",
"module": "lib/all.es.js",
"bundle": "dist/pixi-spine.umd.js",
"types": "./index.d.ts",
"namespace": "PIXI.spine",
"dependencies": {
"@pixi-spine/base": "~3.0.0",
"@pixi-spine/loader-base": "~3.0.0",
"@pixi-spine/loader-uni": "~3.0.0",
"@pixi-spine/runtime-3.7": "~3.0.0",
"@pixi-spine/runtime-3.8": "~3.0.0",
"@pixi-spine/runtime-4.0": "~3.0.0"
"@pixi-spine/base": "~3.0.1",
"@pixi-spine/loader-base": "~3.0.1",
"@pixi-spine/loader-uni": "~3.0.1",
"@pixi-spine/runtime-3.7": "~3.0.1",
"@pixi-spine/runtime-3.8": "~3.0.1",
"@pixi-spine/runtime-4.0": "~3.0.1"
},
"scripts": {
"build": "rollup -c rollup.config.js --silent",
Expand Down
4 changes: 2 additions & 2 deletions common/config/rush/version-policies.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
{
"definitionName": "lockStepVersion",
"policyName": "PixiSpine",
"version": "3.0.0",
"nextBump": "major",
"version": "3.0.1",
"nextBump": "patch",
"mainProject": "pixi-spine"
}
]
2 changes: 1 addition & 1 deletion packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pixi-spine/base",
"version": "3.0.0",
"version": "3.0.1",
"description": "Base of pixi-spine integration, common files for spine runtimes of different versions",
"main": "lib/base.js",
"module": "lib/base.es.js",
Expand Down
8 changes: 4 additions & 4 deletions packages/loader-3.8/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pixi-spine/loader-3.8",
"version": "3.0.0",
"version": "3.0.1",
"description": "Pixi loader middleware for spine 3.8 models",
"main": "lib/loader-3.8.js",
"module": "lib/loader-3.8.es.js",
Expand All @@ -15,9 +15,9 @@
"resource-loader": "~3.0.1"
},
"dependencies": {
"@pixi-spine/base": "~3.0.0",
"@pixi-spine/loader-base": "~3.0.0",
"@pixi-spine/runtime-3.8": "~3.0.0"
"@pixi-spine/base": "~3.0.1",
"@pixi-spine/loader-base": "~3.0.1",
"@pixi-spine/runtime-3.8": "~3.0.1"
},
"scripts": {
"build": "rollup -c rollup.config.js --silent",
Expand Down
4 changes: 2 additions & 2 deletions packages/loader-base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pixi-spine/loader-base",
"version": "3.0.0",
"version": "3.0.1",
"description": "Pixi loader middleware base",
"main": "lib/loader-base.js",
"module": "lib/loader-base.es.js",
Expand All @@ -16,7 +16,7 @@
"resource-loader": "~3.0.1"
},
"dependencies": {
"@pixi-spine/base": "~3.0.0"
"@pixi-spine/base": "~3.0.1"
},
"scripts": {
"build": "rollup -c rollup.config.js --silent",
Expand Down
12 changes: 6 additions & 6 deletions packages/loader-uni/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pixi-spine/loader-uni",
"version": "3.0.0",
"version": "3.0.1",
"description": "Pixi integration with EsotericSoftware Spine, big, contains all runtimes",
"main": "lib/loader-uni.js",
"module": "lib/loader-uni.es.js",
Expand All @@ -10,11 +10,11 @@
"@pixi/loaders": "~6.0.2"
},
"dependencies": {
"@pixi-spine/base": "~3.0.0",
"@pixi-spine/loader-base": "~3.0.0",
"@pixi-spine/runtime-3.7": "~3.0.0",
"@pixi-spine/runtime-3.8": "~3.0.0",
"@pixi-spine/runtime-4.0": "~3.0.0"
"@pixi-spine/base": "~3.0.1",
"@pixi-spine/loader-base": "~3.0.1",
"@pixi-spine/runtime-3.7": "~3.0.1",
"@pixi-spine/runtime-3.8": "~3.0.1",
"@pixi-spine/runtime-4.0": "~3.0.1"
},
"scripts": {
"build": "rollup -c rollup.config.js --silent",
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime-3.7/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pixi-spine/runtime-3.7",
"version": "3.0.0",
"version": "3.0.1",
"description": "Pixi runtime for spine 3.7 models",
"main": "lib/runtime-3.7.js",
"module": "lib/runtime-3.7.es.js",
Expand All @@ -12,7 +12,7 @@
"@pixi/math": "^6.0.2"
},
"dependencies": {
"@pixi-spine/base": "~3.0.0"
"@pixi-spine/base": "~3.0.1"
},
"scripts": {
"build": "rollup -c rollup.config.js --silent",
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime-3.8/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pixi-spine/runtime-3.8",
"version": "3.0.0",
"version": "3.0.1",
"description": "Pixi runtime for spine 3.8 models",
"main": "lib/runtime-3.8.js",
"module": "lib/runtime-3.8.es.js",
Expand All @@ -12,7 +12,7 @@
"@pixi/math": "^6.0.2"
},
"dependencies": {
"@pixi-spine/base": "~3.0.0"
"@pixi-spine/base": "~3.0.1"
},
"scripts": {
"build": "rollup -c rollup.config.js --silent",
Expand Down
4 changes: 2 additions & 2 deletions packages/runtime-4.0/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pixi-spine/runtime-4.0",
"version": "3.0.0",
"version": "3.0.1",
"description": "Pixi runtime for spine 4.0 models",
"main": "lib/runtime-4.0.js",
"module": "lib/runtime-4.0.es.js",
Expand All @@ -12,7 +12,7 @@
"@pixi/math": "^6.0.2"
},
"dependencies": {
"@pixi-spine/base": "~3.0.0"
"@pixi-spine/base": "~3.0.1"
},
"scripts": {
"build": "rollup -c rollup.config.js --silent",
Expand Down

0 comments on commit 5bb2c00

Please sign in to comment.