From 0be9f89f5f39a1e10623da7fdd713f895907ee63 Mon Sep 17 00:00:00 2001 From: Rui Wu Date: Tue, 10 Sep 2024 15:27:46 +0800 Subject: [PATCH] chore: release v1.0.0-alpha.4 --- CHANGELOG.md | 31 ++++++++++++++++++++++++ lerna.json | 2 +- packages/uni-app-components/CHANGELOG.md | 24 ++++++++++++++++++ packages/uni-app-components/package.json | 2 +- packages/uni-app-types/CHANGELOG.md | 11 +++++++++ packages/uni-app-types/package.json | 2 +- packages/uni-cloud-types/CHANGELOG.md | 6 +++++ packages/uni-cloud-types/package.json | 2 +- packages/uni-types/CHANGELOG.md | 6 +++++ packages/uni-types/package.json | 2 +- packages/uni-ui-types/CHANGELOG.md | 11 +++++++++ packages/uni-ui-types/package.json | 2 +- playground/CHANGELOG.md | 4 +++ playground/package.json | 2 +- 14 files changed, 100 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a68f424..de49f7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,37 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.4](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2024-09-10) + +### ⚠ BREAKING CHANGES + +* **uut:** remove UniSearchBarOnInputEvent, update UniSearchBarOnInput types +* **uni-app-components:** require vue@^3.4.21 for defineOptions and shorthand v-bind + +### Features + +* **uac:** add Ad ([8d4d045](https://github.com/uni-helper/uni-typed/commit/8d4d0453e6660c002f06b8433d945d5726582a56)) - by @ModyQyW +* **uac:** add AdInterstitial ([be449b6](https://github.com/uni-helper/uni-typed/commit/be449b6110a8488fbf5b3d759106761b75ae9ca4)) - by @ModyQyW +* **uac:** add AdRewardedVideo ([483bfcc](https://github.com/uni-helper/uni-typed/commit/483bfccd27b2e91b09849a00620ab2d79a3a6022)) - by @ModyQyW +* **uni-app-components:** add AdContentPage ([3bae235](https://github.com/uni-helper/uni-typed/commit/3bae23596f83d2d39f8abf20b820864309676ee9)) - by @ModyQyW +* **uni-app-components:** add AdDraw ([753606a](https://github.com/uni-helper/uni-typed/commit/753606a4dd34e4591234237c40ca70269856300a)) - by @ModyQyW +* **uni-app-components:** add AdFullscreenVideo ([a0919af](https://github.com/uni-helper/uni-typed/commit/a0919afaa8d7bee5c30d3c376d183265a341b659)) - by @ModyQyW +* **uni-app-components:** add AdInteractive ([2e77196](https://github.com/uni-helper/uni-typed/commit/2e771968962bdb932617d5212fc7ba890cd902f1)) - by @ModyQyW + +### Bug Fixes + +* fix type errors ([f32681e](https://github.com/uni-helper/uni-typed/commit/f32681e64701affed74c3f83debc3feea4b9ec51)) - by @ModyQyW +* loose peerDependencies ([cb6c14b](https://github.com/uni-helper/uni-typed/commit/cb6c14bbbf02e8bd408861e394ab2fd93697ee6b)) - by @ModyQyW +* **uat:** [Ad] better jsdoc styles ([ab2f5c5](https://github.com/uni-helper/uni-typed/commit/ab2f5c56d355c8bdfbc15bfbc131f60e995045eb)) - by @ModyQyW +* **uat:** [AdInterstitial] better jsdoc styles ([0e76de1](https://github.com/uni-helper/uni-typed/commit/0e76de15a0e363868780097866da5582d18d2777)) - by @ModyQyW +* **uat:** [AdRewardedVideo] better jsdoc styles ([1056746](https://github.com/uni-helper/uni-typed/commit/1056746924c60cca2dee02cb6d5fd1a70beb51d8)) - by @ModyQyW +* **uni-app-components:** add missing slot ([4622ba0](https://github.com/uni-helper/uni-typed/commit/4622ba08f46e8ba9aa15e699006ef2122bd5450f)) - by @ModyQyW +* **uni-app-components:** fix template ([590a6f8](https://github.com/uni-helper/uni-typed/commit/590a6f84fb2278e30229f0304bdfbd73eb05a822)) - by @ModyQyW +* **uni-app-components:** require vue@^3.4.21 for defineOptions and shorthand v-bind ([0033f92](https://github.com/uni-helper/uni-typed/commit/0033f92b8ebd839fc78f82019dea5e06473ed67b)) - by @ModyQyW +* **uni-app-types:** [AdContentPage] better jsdoc styles ([794ee03](https://github.com/uni-helper/uni-typed/commit/794ee034e25a583d25297d68ce55a1543d847190)) - by @ModyQyW +* **uni-app-types:** [AdFullScreenVideo] better jsdoc styles ([01222ce](https://github.com/uni-helper/uni-typed/commit/01222ce2ce023858996675aeeebcd56200b8345d)) - by @ModyQyW +* **uut:** remove UniSearchBarOnInputEvent, update UniSearchBarOnInput types ([2e32d7f](https://github.com/uni-helper/uni-typed/commit/2e32d7f9f1218d9364a92db9b24d283370beaf27)) - by @ModyQyW + ## [1.0.0-alpha.3](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-08-07) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 4a34d9f..811e005 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/@lerna-lite/cli/schemas/lerna-schema.json", - "version": "1.0.0-alpha.3", + "version": "1.0.0-alpha.4", "npmClient": "pnpm", "packages": [ "packages/*", diff --git a/packages/uni-app-components/CHANGELOG.md b/packages/uni-app-components/CHANGELOG.md index 6c77a67..c028d6f 100644 --- a/packages/uni-app-components/CHANGELOG.md +++ b/packages/uni-app-components/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.4](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2024-09-10) + +### ⚠ BREAKING CHANGES + +* **uni-app-components:** require vue@^3.4.21 for defineOptions and shorthand v-bind + +### Features + +* **uac:** add Ad ([8d4d045](https://github.com/uni-helper/uni-typed/commit/8d4d0453e6660c002f06b8433d945d5726582a56)) - by @ModyQyW +* **uac:** add AdInterstitial ([be449b6](https://github.com/uni-helper/uni-typed/commit/be449b6110a8488fbf5b3d759106761b75ae9ca4)) - by @ModyQyW +* **uac:** add AdRewardedVideo ([483bfcc](https://github.com/uni-helper/uni-typed/commit/483bfccd27b2e91b09849a00620ab2d79a3a6022)) - by @ModyQyW +* **uni-app-components:** add AdContentPage ([3bae235](https://github.com/uni-helper/uni-typed/commit/3bae23596f83d2d39f8abf20b820864309676ee9)) - by @ModyQyW +* **uni-app-components:** add AdDraw ([753606a](https://github.com/uni-helper/uni-typed/commit/753606a4dd34e4591234237c40ca70269856300a)) - by @ModyQyW +* **uni-app-components:** add AdFullscreenVideo ([a0919af](https://github.com/uni-helper/uni-typed/commit/a0919afaa8d7bee5c30d3c376d183265a341b659)) - by @ModyQyW +* **uni-app-components:** add AdInteractive ([2e77196](https://github.com/uni-helper/uni-typed/commit/2e771968962bdb932617d5212fc7ba890cd902f1)) - by @ModyQyW + +### Bug Fixes + +* fix type errors ([f32681e](https://github.com/uni-helper/uni-typed/commit/f32681e64701affed74c3f83debc3feea4b9ec51)) - by @ModyQyW +* loose peerDependencies ([cb6c14b](https://github.com/uni-helper/uni-typed/commit/cb6c14bbbf02e8bd408861e394ab2fd93697ee6b)) - by @ModyQyW +* **uni-app-components:** add missing slot ([4622ba0](https://github.com/uni-helper/uni-typed/commit/4622ba08f46e8ba9aa15e699006ef2122bd5450f)) - by @ModyQyW +* **uni-app-components:** fix template ([590a6f8](https://github.com/uni-helper/uni-typed/commit/590a6f84fb2278e30229f0304bdfbd73eb05a822)) - by @ModyQyW +* **uni-app-components:** require vue@^3.4.21 for defineOptions and shorthand v-bind ([0033f92](https://github.com/uni-helper/uni-typed/commit/0033f92b8ebd839fc78f82019dea5e06473ed67b)) - by @ModyQyW + ## [1.0.0-alpha.3](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-08-07) **Note:** Version bump only for package @uni-helper/uni-app-components diff --git a/packages/uni-app-components/package.json b/packages/uni-app-components/package.json index 3e293dc..053586c 100644 --- a/packages/uni-app-components/package.json +++ b/packages/uni-app-components/package.json @@ -1,6 +1,6 @@ { "name": "@uni-helper/uni-app-components", - "version": "1.0.0-alpha.3", + "version": "1.0.0-alpha.4", "description": "WIP 带有 TypeScript 类型的 uni-app 组件", "keywords": [ "uni-app", diff --git a/packages/uni-app-types/CHANGELOG.md b/packages/uni-app-types/CHANGELOG.md index 8f6674d..5f8c8ee 100644 --- a/packages/uni-app-types/CHANGELOG.md +++ b/packages/uni-app-types/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.4](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2024-09-10) + +### Bug Fixes + +* loose peerDependencies ([cb6c14b](https://github.com/uni-helper/uni-typed/commit/cb6c14bbbf02e8bd408861e394ab2fd93697ee6b)) - by @ModyQyW +* **uat:** [Ad] better jsdoc styles ([ab2f5c5](https://github.com/uni-helper/uni-typed/commit/ab2f5c56d355c8bdfbc15bfbc131f60e995045eb)) - by @ModyQyW +* **uat:** [AdInterstitial] better jsdoc styles ([0e76de1](https://github.com/uni-helper/uni-typed/commit/0e76de15a0e363868780097866da5582d18d2777)) - by @ModyQyW +* **uat:** [AdRewardedVideo] better jsdoc styles ([1056746](https://github.com/uni-helper/uni-typed/commit/1056746924c60cca2dee02cb6d5fd1a70beb51d8)) - by @ModyQyW +* **uni-app-types:** [AdContentPage] better jsdoc styles ([794ee03](https://github.com/uni-helper/uni-typed/commit/794ee034e25a583d25297d68ce55a1543d847190)) - by @ModyQyW +* **uni-app-types:** [AdFullScreenVideo] better jsdoc styles ([01222ce](https://github.com/uni-helper/uni-typed/commit/01222ce2ce023858996675aeeebcd56200b8345d)) - by @ModyQyW + ## [1.0.0-alpha.3](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-08-07) ### Bug Fixes diff --git a/packages/uni-app-types/package.json b/packages/uni-app-types/package.json index 700b7d4..574dc14 100644 --- a/packages/uni-app-types/package.json +++ b/packages/uni-app-types/package.json @@ -1,6 +1,6 @@ { "name": "@uni-helper/uni-app-types", - "version": "1.0.0-alpha.3", + "version": "1.0.0-alpha.4", "description": "为 uni-app 组件提供 TypeScript 类型", "keywords": [ "uni-app", diff --git a/packages/uni-cloud-types/CHANGELOG.md b/packages/uni-cloud-types/CHANGELOG.md index 063d3d4..987d1ed 100644 --- a/packages/uni-cloud-types/CHANGELOG.md +++ b/packages/uni-cloud-types/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.4](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2024-09-10) + +### Bug Fixes + +* loose peerDependencies ([cb6c14b](https://github.com/uni-helper/uni-typed/commit/cb6c14bbbf02e8bd408861e394ab2fd93697ee6b)) - by @ModyQyW + ## [1.0.0-alpha.3](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-08-07) **Note:** Version bump only for package @uni-helper/uni-cloud-types diff --git a/packages/uni-cloud-types/package.json b/packages/uni-cloud-types/package.json index 950be27..9e2e448 100644 --- a/packages/uni-cloud-types/package.json +++ b/packages/uni-cloud-types/package.json @@ -1,6 +1,6 @@ { "name": "@uni-helper/uni-cloud-types", - "version": "1.0.0-alpha.3", + "version": "1.0.0-alpha.4", "description": "为 uni-cloud 组件提供 TypeScript 类型", "keywords": [ "uni-app", diff --git a/packages/uni-types/CHANGELOG.md b/packages/uni-types/CHANGELOG.md index 8757c02..d3e56e3 100644 --- a/packages/uni-types/CHANGELOG.md +++ b/packages/uni-types/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.4](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2024-09-10) + +### Bug Fixes + +* loose peerDependencies ([cb6c14b](https://github.com/uni-helper/uni-typed/commit/cb6c14bbbf02e8bd408861e394ab2fd93697ee6b)) - by @ModyQyW + ## [1.0.0-alpha.3](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-08-07) **Note:** Version bump only for package @uni-helper/uni-types diff --git a/packages/uni-types/package.json b/packages/uni-types/package.json index 26782d6..8ac6422 100644 --- a/packages/uni-types/package.json +++ b/packages/uni-types/package.json @@ -1,6 +1,6 @@ { "name": "@uni-helper/uni-types", - "version": "1.0.0-alpha.3", + "version": "1.0.0-alpha.4", "description": "为 uni-app、uni-cloud 和 uni-ui 组件提供 TypeScript 类型", "keywords": [ "uni-app", diff --git a/packages/uni-ui-types/CHANGELOG.md b/packages/uni-ui-types/CHANGELOG.md index a481ed1..e83a617 100644 --- a/packages/uni-ui-types/CHANGELOG.md +++ b/packages/uni-ui-types/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.4](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2024-09-10) + +### ⚠ BREAKING CHANGES + +* **uut:** remove UniSearchBarOnInputEvent, update UniSearchBarOnInput types + +### Bug Fixes + +* loose peerDependencies ([cb6c14b](https://github.com/uni-helper/uni-typed/commit/cb6c14bbbf02e8bd408861e394ab2fd93697ee6b)) - by @ModyQyW +* **uut:** remove UniSearchBarOnInputEvent, update UniSearchBarOnInput types ([2e32d7f](https://github.com/uni-helper/uni-typed/commit/2e32d7f9f1218d9364a92db9b24d283370beaf27)) - by @ModyQyW + ## [1.0.0-alpha.3](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-08-07) **Note:** Version bump only for package @uni-helper/uni-ui-types diff --git a/packages/uni-ui-types/package.json b/packages/uni-ui-types/package.json index d7edecf..d353773 100644 --- a/packages/uni-ui-types/package.json +++ b/packages/uni-ui-types/package.json @@ -1,6 +1,6 @@ { "name": "@uni-helper/uni-ui-types", - "version": "1.0.0-alpha.3", + "version": "1.0.0-alpha.4", "description": "为 uni-ui 组件提供 TypeScript 类型", "keywords": [ "uni-app", diff --git a/playground/CHANGELOG.md b/playground/CHANGELOG.md index 86132cb..087ae22 100644 --- a/playground/CHANGELOG.md +++ b/playground/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.0.0-alpha.4](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2024-09-10) + +**Note:** Version bump only for package playground + ## [1.0.0-alpha.3](https://github.com/uni-helper/uni-typed/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2024-08-07) **Note:** Version bump only for package uni-preset-vue diff --git a/playground/package.json b/playground/package.json index a54cebd..f52904d 100644 --- a/playground/package.json +++ b/playground/package.json @@ -1,6 +1,6 @@ { "name": "playground", - "version": "1.0.0-alpha.3", + "version": "1.0.0-alpha.4", "private": true, "scripts": { "build:app": "uni build -p app",