Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 4.2.12 (2025-09-18)

##### Bug Fixes

* 修复存在子视图时图元的获取 ([#7136](https://github.com/antvis/g2/pull/7136)) ([53f06fef](https://github.com/antvis/g2/commit/53f06fef3ba9c79f5eb8378aad90c5f694684c9d))

#### 4.2.11 (2024-03-06)

##### Chores
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@antv/g2",
"version": "4.2.11",
"version": "4.2.12",
"description": "the Grammar of Graphics in Javascript",
"main": "lib/index.js",
"module": "esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/core.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* G2 的一个壳子,不包含 Geometry,由开发者自己定义和引入 */

export const VERSION = '4.2.11';
export const VERSION = '4.2.12';

// 核心基类导出
export { Chart, View, Event } from './chart'; // Chart, View 类
Expand Down
Loading