diff --git a/Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md b/Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md index 76f4a28..3ca8b5b 100644 --- a/Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md +++ b/Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-rc.2] — 2026-05-18 + +Release-workflow validation build. No functional changes versus `1.0.0-rc.1`. + +### Changed +- Integration URL in all four READMEs now points at the dedicated `upm` branch / `upm/` tag published by the release workflow (no `?path=` query needed). + ## [1.0.0-rc.1] — 2026-05-18 First release candidate for `1.0.0`. Marketed as a preview while the **ID System** is finalised — its public API, generated boilerplate and editor workflow may still change before the final `1.0.0` release. @@ -82,5 +89,6 @@ Five installable samples shipped under `Samples~/` (UPM convention, imported via - EN and RU READMEs at the package root and at `Documentation/EN/` and `Documentation/RU/`, mirroring the same content with language-appropriate image paths. - Per-feature reference documents next to each README: `SerializedPropertyExtensions.md`, `VisualElementExtensions.md`. -[Unreleased]: https://github.com/VPDPersonal/Aspid.FastTools/compare/v1.0.0-rc.1...HEAD +[Unreleased]: https://github.com/VPDPersonal/Aspid.FastTools/compare/v1.0.0-rc.2...HEAD +[1.0.0-rc.2]: https://github.com/VPDPersonal/Aspid.FastTools/compare/v1.0.0-rc.1...v1.0.0-rc.2 [1.0.0-rc.1]: https://github.com/VPDPersonal/Aspid.FastTools/releases/tag/v1.0.0-rc.1 diff --git a/Aspid.FastTools/Assets/Aspid/FastTools/Documentation/EN/README.md b/Aspid.FastTools/Assets/Aspid/FastTools/Documentation/EN/README.md index 9dd95a9..2422b60 100644 --- a/Aspid.FastTools/Assets/Aspid/FastTools/Documentation/EN/README.md +++ b/Aspid.FastTools/Assets/Aspid/FastTools/Documentation/EN/README.md @@ -26,16 +26,16 @@ ## Integration -Install Aspid.FastTools via UPM (Unity Package Manager) — add the package using its Git URL: +Install Aspid.FastTools via UPM (Unity Package Manager) — add the package using its Git URL. The release workflow publishes a `upm` branch containing only the package contents at its root, so no `?path=` query is needed: ``` -https://github.com/VPDPersonal/Aspid.FastTools.git?path=Aspid.FastTools/Assets/Aspid/FastTools +https://github.com/VPDPersonal/Aspid.FastTools.git#upm ``` -To install a specific version, append the release tag as a `#` fragment (see [Releases](https://github.com/VPDPersonal/Aspid.FastTools/releases) for the list of available tags): +To install a specific version, target the immutable per-release tag `upm/` (see [Releases](https://github.com/VPDPersonal/Aspid.FastTools/releases) for the list of available versions): ``` -https://github.com/VPDPersonal/Aspid.FastTools.git?path=Aspid.FastTools/Assets/Aspid/FastTools#v1.0.0-rc.1 +https://github.com/VPDPersonal/Aspid.FastTools.git#upm/1.0.0-rc.2 ``` --- diff --git a/Aspid.FastTools/Assets/Aspid/FastTools/Documentation/RU/README.md b/Aspid.FastTools/Assets/Aspid/FastTools/Documentation/RU/README.md index 2eb1a5c..30e74e8 100644 --- a/Aspid.FastTools/Assets/Aspid/FastTools/Documentation/RU/README.md +++ b/Aspid.FastTools/Assets/Aspid/FastTools/Documentation/RU/README.md @@ -26,16 +26,16 @@ ## Integration -Установите Aspid.FastTools через UPM (Unity Package Manager) — добавьте пакет по его Git URL: +Установите Aspid.FastTools через UPM (Unity Package Manager) — добавьте пакет по его Git URL. Релизный workflow публикует ветку `upm`, в корне которой лежит само содержимое пакета, поэтому параметр `?path=` указывать не нужно: ``` -https://github.com/VPDPersonal/Aspid.FastTools.git?path=Aspid.FastTools/Assets/Aspid/FastTools +https://github.com/VPDPersonal/Aspid.FastTools.git#upm ``` -Чтобы установить конкретную версию, добавьте тег релиза в виде `#`-фрагмента (список доступных тегов — на странице [Releases](https://github.com/VPDPersonal/Aspid.FastTools/releases)): +Чтобы установить конкретную версию, укажите неизменяемый per-release тег `upm/` (список доступных версий — на странице [Releases](https://github.com/VPDPersonal/Aspid.FastTools/releases)): ``` -https://github.com/VPDPersonal/Aspid.FastTools.git?path=Aspid.FastTools/Assets/Aspid/FastTools#v1.0.0-rc.1 +https://github.com/VPDPersonal/Aspid.FastTools.git#upm/1.0.0-rc.2 ``` --- diff --git a/Aspid.FastTools/Assets/Aspid/FastTools/package.json b/Aspid.FastTools/Assets/Aspid/FastTools/package.json index 43f6f76..0049266 100644 --- a/Aspid.FastTools/Assets/Aspid/FastTools/package.json +++ b/Aspid.FastTools/Assets/Aspid/FastTools/package.json @@ -1,6 +1,6 @@ { "name": "com.aspid.fasttools", - "version": "1.0.0-rc.1", + "version": "1.0.0-rc.2", "displayName": "Aspid.FastTools", "description": "Unity tools to cut boilerplate — source-generated ProfilerMarkers, serializable type/enum/ID systems, and a fluent UIToolkit API.", "unity": "6000.0", diff --git a/README.md b/README.md index adb1520..4430a3c 100644 --- a/README.md +++ b/README.md @@ -28,16 +28,16 @@ ## Integration -Install Aspid.FastTools via UPM (Unity Package Manager) — add the package using its Git URL: +Install Aspid.FastTools via UPM (Unity Package Manager) — add the package using its Git URL. The release workflow publishes a `upm` branch containing only the package contents at its root, so no `?path=` query is needed: ``` -https://github.com/VPDPersonal/Aspid.FastTools.git?path=Aspid.FastTools/Assets/Aspid/FastTools +https://github.com/VPDPersonal/Aspid.FastTools.git#upm ``` -To install a specific version, append the release tag as a `#` fragment (see [Releases](https://github.com/VPDPersonal/Aspid.FastTools/releases) for the list of available tags): +To install a specific version, target the immutable per-release tag `upm/` (see [Releases](https://github.com/VPDPersonal/Aspid.FastTools/releases) for the list of available versions): ``` -https://github.com/VPDPersonal/Aspid.FastTools.git?path=Aspid.FastTools/Assets/Aspid/FastTools#v1.0.0-rc.1 +https://github.com/VPDPersonal/Aspid.FastTools.git#upm/1.0.0-rc.2 ``` --- diff --git a/README_RU.md b/README_RU.md index c851ff5..2a631d3 100644 --- a/README_RU.md +++ b/README_RU.md @@ -28,16 +28,16 @@ ## Integration -Установите Aspid.FastTools через UPM (Unity Package Manager) — добавьте пакет по его Git URL: +Установите Aspid.FastTools через UPM (Unity Package Manager) — добавьте пакет по его Git URL. Релизный workflow публикует ветку `upm`, в корне которой лежит само содержимое пакета, поэтому параметр `?path=` указывать не нужно: ``` -https://github.com/VPDPersonal/Aspid.FastTools.git?path=Aspid.FastTools/Assets/Aspid/FastTools +https://github.com/VPDPersonal/Aspid.FastTools.git#upm ``` -Чтобы установить конкретную версию, добавьте тег релиза в виде `#`-фрагмента (список доступных тегов — на странице [Releases](https://github.com/VPDPersonal/Aspid.FastTools/releases)): +Чтобы установить конкретную версию, укажите неизменяемый per-release тег `upm/` (список доступных версий — на странице [Releases](https://github.com/VPDPersonal/Aspid.FastTools/releases)): ``` -https://github.com/VPDPersonal/Aspid.FastTools.git?path=Aspid.FastTools/Assets/Aspid/FastTools#v1.0.0-rc.1 +https://github.com/VPDPersonal/Aspid.FastTools.git#upm/1.0.0-rc.2 ``` ---