diff --git a/Documentation~/en/changelog.md b/Documentation~/en/changelog.md index 6d5f3109..fd411008 100644 --- a/Documentation~/en/changelog.md +++ b/Documentation~/en/changelog.md @@ -66,6 +66,11 @@ ## master +## v3.10.1 + +* (2024.02.21) Release `v3.10.1` +* (2024.02.19) Fix to `Tooltip` dot markers not adapting to color + ## v3.10.0 Highlights: diff --git a/Documentation~/zh/changelog.md b/Documentation~/zh/changelog.md index dc4de487..0db5e455 100644 --- a/Documentation~/zh/changelog.md +++ b/Documentation~/zh/changelog.md @@ -6,6 +6,7 @@ slug: /changelog # 更新日志 [master](#master) +[v3.10.1](#v3101) [v3.10.0](#v3100) [v3.9.0](#v390) [v3.8.1](#v381) @@ -71,6 +72,9 @@ slug: /changelog ## master +## v3.10.1 + +* (2024.02.21) 发布`v3.10.1`版本 * (2024.02.19) 修复`Tooltip`的圆点标记不会自适应颜色的问题 ## v3.10.0 diff --git a/Runtime/Internal/XChartsMgr.cs b/Runtime/Internal/XChartsMgr.cs index 9dcdbce5..f6597719 100644 --- a/Runtime/Internal/XChartsMgr.cs +++ b/Runtime/Internal/XChartsMgr.cs @@ -21,8 +21,8 @@ class XChartsVersion [ExecuteInEditMode] public static class XChartsMgr { - public static readonly string version = "3.10.0"; - public static readonly int versionDate = 20240201; + public static readonly string version = "3.10.1"; + public static readonly int versionDate = 20240221; public static string fullVersion { get { return version + "-" + versionDate; } } internal static List chartList = new List(); diff --git a/package.json b/package.json index fce31d05..b3390b19 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "displayName": "XCharts", "author": "monitor1394", "license": "MIT", - "version": "3.10.0", + "version": "3.10.1", "date": "20240201", "checkdate": "20240201", "unity": "2018.3",