Skip to content

Commit

Permalink
Release (#1558)
Browse files Browse the repository at this point in the history
* fix: 小程序不存在 Node 对象 (#1556)

* chore: commit changeset

* chore(release): bump version (#1559)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 23, 2023
1 parent 7884292 commit 1d44607
Show file tree
Hide file tree
Showing 20 changed files with 72 additions and 9 deletions.
8 changes: 8 additions & 0 deletions packages/g-canvas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @antv/g-canvas

## 1.11.20

### Patch Changes

- Updated dependencies [c6f9a9e1]
- @antv/g-plugin-canvas-renderer@1.9.17
- @antv/g-plugin-canvas-picker@1.10.17

## 1.11.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-canvas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-canvas",
"version": "1.11.19",
"version": "1.11.20",
"description": "A renderer implemented by Canvas 2D API",
"keywords": [
"antv",
Expand Down
8 changes: 8 additions & 0 deletions packages/g-canvaskit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @antv/g-canvaskit

## 0.10.20

### Patch Changes

- Updated dependencies [c6f9a9e1]
- @antv/g-plugin-canvaskit-renderer@1.3.16
- @antv/g-plugin-canvas-picker@1.10.17

## 0.10.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-canvaskit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-canvaskit",
"version": "0.10.19",
"version": "0.10.20",
"description": "A renderer implemented by CanvasKit",
"keywords": [
"antv",
Expand Down
8 changes: 8 additions & 0 deletions packages/g-mobile-canvas/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @antv/g-mobile-canvas

## 0.11.8

### Patch Changes

- Updated dependencies [c6f9a9e1]
- @antv/g-plugin-canvas-renderer@1.9.17
- @antv/g-plugin-canvas-picker@1.10.17

## 0.11.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-mobile-canvas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-mobile-canvas",
"version": "0.11.7",
"version": "0.11.8",
"description": "A renderer implemented with Canvas2D API in mobile environment",
"keywords": [
"antv",
Expand Down
7 changes: 7 additions & 0 deletions packages/g-plugin-canvas-picker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @antv/g-plugin-canvas-picker

## 1.10.17

### Patch Changes

- Updated dependencies [c6f9a9e1]
- @antv/g-plugin-canvas-renderer@1.9.17

## 1.10.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-canvas-picker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-canvas-picker",
"version": "1.10.16",
"version": "1.10.17",
"description": "A G plugin for picking in canvas",
"keywords": [
"antv",
Expand Down
6 changes: 6 additions & 0 deletions packages/g-plugin-canvas-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-plugin-canvas-renderer

## 1.9.17

### Patch Changes

- c6f9a9e1: fix: 小程序不存在 Node 对象

## 1.9.16

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-canvas-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-canvas-renderer",
"version": "1.9.16",
"version": "1.9.17",
"description": "A G plugin of renderer implementation with Canvas2D API",
"keywords": [
"antv",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
CustomEvent,
ElementEvent,
Shape,
Node,
} from '@antv/g-lite';
import type { PathGenerator } from '@antv/g-plugin-canvas-path-generator';
import { isNil } from '@antv/util';
Expand Down
6 changes: 6 additions & 0 deletions packages/g-plugin-canvaskit-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-plugin-canvaskit-renderer

## 1.3.16

### Patch Changes

- c6f9a9e1: fix: 小程序不存在 Node 对象

## 1.3.15

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-canvaskit-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-canvaskit-renderer",
"version": "1.3.15",
"version": "1.3.16",
"description": "A G plugin of renderer implementation with CanvasKit",
"keywords": [
"antv",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import {
parseTransform,
parsedTransformToMat4,
rad2deg,
Node,
} from '@antv/g-lite';
import type { ImagePool } from '@antv/g-plugin-image-loader';
import { isNil, isString } from '@antv/util';
Expand Down
6 changes: 6 additions & 0 deletions packages/g-plugin-rough-canvas-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-plugin-rough-canvas-renderer

## 1.9.20

### Patch Changes

- @antv/g-canvas@1.11.20

## 1.9.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-rough-canvas-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-rough-canvas-renderer",
"version": "1.9.19",
"version": "1.9.20",
"description": "A G plugin of renderer implementation with rough.js",
"keywords": [
"antv",
Expand Down
6 changes: 6 additions & 0 deletions packages/g-plugin-zdog-canvas-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-plugin-zdog-canvas-renderer

## 1.2.20

### Patch Changes

- @antv/g-canvas@1.11.20

## 1.2.19

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-plugin-zdog-canvas-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-plugin-zdog-canvas-renderer",
"version": "1.2.19",
"version": "1.2.20",
"description": "A G plugin of renderer implementation with Zdog",
"keywords": [
"antv",
Expand Down
6 changes: 6 additions & 0 deletions packages/g-web-components/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @antv/g-web-components

## 1.9.26

### Patch Changes

- @antv/g-canvas@1.11.20

## 1.9.25

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/g-web-components/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g-web-components",
"version": "1.9.25",
"version": "1.9.26",
"description": "A declarative usage for G implemented with WebComponents",
"keywords": [
"antv",
Expand Down

0 comments on commit 1d44607

Please sign in to comment.