Skip to content

Commit

Permalink
Merge pull request #88 from Tresjs/release/core-v1.5.1-cientos-1.5.0
Browse files Browse the repository at this point in the history
Release/core v1.5.1 cientos 1.5.0
  • Loading branch information
alvarosabu authored Jan 19, 2023
2 parents f84b851 + 3c357ed commit a1224b7
Show file tree
Hide file tree
Showing 7 changed files with 101 additions and 888 deletions.
2 changes: 1 addition & 1 deletion docs/cientos/shapes/plane.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Plane
# Plane <Badge type="warning" text="^1.5.0" />

![](/cientos/plane.png)

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
"@changesets/changelog-github": "^0.4.7",
"@changesets/cli": "^2.25.2",
"@stackblitz/sdk": "^1.8.1",
"@tresjs/cientos": "workspace:^1.4.0",
"@tresjs/core": "workspace:^1.5.0",
"@tresjs/cientos": "workspace:^1.5.0",
"@tresjs/core": "workspace:^1.5.1",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"conventional-changelog-cli": "^2.2.2",
Expand Down
8 changes: 8 additions & 0 deletions packages/cientos/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 1.5.0 (2023-01-19)

### Features

- **cientos:** plane abstraction ([3f27400](https://github.com/Tresjs/tres/commit/3f274007d3177bb35bcd74a705ab7c74ca3ce1cf))
- **cientos:** updated onLoop delta usage for useAnimations ([9e7fdbd](https://github.com/Tresjs/tres/commit/9e7fdbd9d1184b8405fdc252c2ba19e53b1bf91b))
- **cientos:** useAnimations ([2704288](https://github.com/Tresjs/tres/commit/2704288fd8d814ef9091001f3630fbdb97f13884))

# 1.4.0 (2023-01-10)

### Features
Expand Down
12 changes: 6 additions & 6 deletions packages/cientos/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tresjs/cientos",
"description": "Collection of useful helpers and fully functional, ready-made abstractions for Tres",
"version": "1.4.0",
"version": "1.5.0",
"type": "module",
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)",
"files": [
Expand Down Expand Up @@ -42,20 +42,20 @@
"vue": "^3.2.45"
},
"devDependencies": {
"@tweakpane/plugin-essentials": "^0.1.5",
"@tweakpane/plugin-essentials": "^0.1.7",
"@vitejs/plugin-vue": "^4.0.0",
"kolorist": "^1.6.0",
"pathe": "^1.0.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.8.3",
"tweakpane": "^3.1.1",
"rollup-plugin-visualizer": "^5.9.0",
"tweakpane": "^3.1.2",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vite": "^4.0.4",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-dts": "^1.7.1"
},
"dependencies": {
"@tresjs/core": "workspace:^1.5.0",
"@tresjs/core": "workspace:^1.5.1",
"three-stdlib": "^2.21.5"
}
}
7 changes: 7 additions & 0 deletions packages/tres/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 1.5.1 (2023-01-19)

### Bug Fixes

- **core:** corret use of clock.getDelta() ([728b43e](https://github.com/Tresjs/tres/commit/728b43ee5e95549c02c98941de4091af5681fa66))
- **core:** remove histoire ([14ab727](https://github.com/Tresjs/tres/commit/14ab727685bcab4fa78addd620f1652700ca5613))

# 1.5.0 (2023-01-10)

### Features
Expand Down
10 changes: 5 additions & 5 deletions packages/tres/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tresjs/core",
"description": "Declarative ThreeJS using Vue Components",
"version": "1.5.0",
"version": "1.5.1",
"type": "module",
"author": "Alvaro Saburido <[email protected]> (https://github.com/alvarosabu/)",
"files": [
Expand Down Expand Up @@ -49,12 +49,12 @@
},
"devDependencies": {
"@alvarosabu/utils": "^2.2.0",
"@tresjs/cientos": "workspace:^1.4.0",
"@tresjs/cientos": "workspace:^1.5.0",
"@types/three": "^0.148.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitest/coverage-c8": "^0.25.8",
"@vitest/ui": "^0.25.8",
"@vueuse/core": "^9.7.0",
"@vueuse/core": "^9.11.0",
"gl": "6.0.1",
"happy-dom": "^8.1.0",
"kolorist": "^1.6.0",
Expand All @@ -63,10 +63,10 @@
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-visualizer": "^5.8.3",
"unplugin-vue-components": "^0.22.12",
"vite": "^4.0.3",
"vite": "^4.0.4",
"vite-plugin-banner": "^0.7.0",
"vite-plugin-dts": "^1.7.1",
"vite-plugin-glsl": "^1.0.1",
"vite-plugin-glsl": "^1.1.0",
"vite-plugin-require-transform": "^1.0.4",
"vitest": "^0.25.8",
"vue-demi": "^0.13.11"
Expand Down
Loading

0 comments on commit a1224b7

Please sign in to comment.