From 733b901b57b0abfb9e671969724167e29b500409 Mon Sep 17 00:00:00 2001 From: Vladislav Panin Date: Mon, 25 May 2026 21:54:49 +0300 Subject: [PATCH 1/2] chore: rename package from com.aspid.fasttools to tech.aspid.fasttools --- .claude/agents/code-reviewer.md | 2 +- Aspid.FastTools.Generators/CLAUDE.md | 2 +- .../FastTools/Unity/Editor/Scripts/Welcome/WelcomeWindow.cs | 2 +- Aspid.FastTools/Assets/Aspid/FastTools/package.json | 2 +- CLAUDE.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.claude/agents/code-reviewer.md b/.claude/agents/code-reviewer.md index b34e1717..346a3189 100644 --- a/.claude/agents/code-reviewer.md +++ b/.claude/agents/code-reviewer.md @@ -7,7 +7,7 @@ You are a C# code reviewer specializing in Unity packages and Roslyn source gene ## Project Context -This is **Aspid.FastTools** — a Unity package (`com.aspid.fasttools`) with two separate projects: +This is **Aspid.FastTools** — a Unity package (`tech.aspid.fasttools`) with two separate projects: - `Aspid.FastTools/` — Unity project (Runtime + Editor assemblies) - `Aspid.FastTools.Generators/` — .NET solution with Roslyn source generators diff --git a/Aspid.FastTools.Generators/CLAUDE.md b/Aspid.FastTools.Generators/CLAUDE.md index cb793f8a..690bd2b3 100644 --- a/Aspid.FastTools.Generators/CLAUDE.md +++ b/Aspid.FastTools.Generators/CLAUDE.md @@ -1,6 +1,6 @@ # Aspid.FastTools.Generators -Standalone .NET solution containing Roslyn source generators for the `com.aspid.fasttools` Unity package. +Standalone .NET solution containing Roslyn source generators for the `tech.aspid.fasttools` Unity package. ## Commands diff --git a/Aspid.FastTools/Assets/Aspid/FastTools/Unity/Editor/Scripts/Welcome/WelcomeWindow.cs b/Aspid.FastTools/Assets/Aspid/FastTools/Unity/Editor/Scripts/Welcome/WelcomeWindow.cs index 5e569589..fa712636 100644 --- a/Aspid.FastTools/Assets/Aspid/FastTools/Unity/Editor/Scripts/Welcome/WelcomeWindow.cs +++ b/Aspid.FastTools/Assets/Aspid/FastTools/Unity/Editor/Scripts/Welcome/WelcomeWindow.cs @@ -20,7 +20,7 @@ internal sealed class WelcomeWindow : EditorWindow private const string MenuPath = "Tools/Aspid 🐍/Welcome FastTools"; - private const string PackageName = "com.aspid.fasttools"; + private const string PackageName = "tech.aspid.fasttools"; private const string PackageRootPath = "Assets/Aspid/FastTools"; private const string SamplesPath = PackageRootPath + "/Samples"; diff --git a/Aspid.FastTools/Assets/Aspid/FastTools/package.json b/Aspid.FastTools/Assets/Aspid/FastTools/package.json index 11a9a719..06e9b17f 100644 --- a/Aspid.FastTools/Assets/Aspid/FastTools/package.json +++ b/Aspid.FastTools/Assets/Aspid/FastTools/package.json @@ -1,5 +1,5 @@ { - "name": "com.aspid.fasttools", + "name": "tech.aspid.fasttools", "version": "1.0.0-rc.3", "displayName": "Aspid.FastTools", "description": "Unity tools to cut boilerplate — source-generated ProfilerMarkers, serializable type/enum/ID systems, and a fluent UIToolkit API.", diff --git a/CLAUDE.md b/CLAUDE.md index f5069ea6..80ed4ce2 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co ## Repository Overview -**Aspid.FastTools** is a Unity package (`com.aspid.fasttools`) targeting Unity 6.0+ that minimizes routine boilerplate code. It consists of two separate projects: +**Aspid.FastTools** is a Unity package (`tech.aspid.fasttools`) targeting Unity 6.0+ that minimizes routine boilerplate code. It consists of two separate projects: 1. **`Aspid.FastTools/`** — The Unity project containing the package source (Runtime + Editor code) 2. **`Aspid.FastTools.Generators/`** — A standalone .NET solution containing Roslyn source generators From da478e00de8a289f63d790e1cd11b92128f5049f Mon Sep 17 00:00:00 2001 From: Claude Date: Tue, 26 May 2026 16:17:10 +0000 Subject: [PATCH 2/2] docs: add package rename to changelog https://claude.ai/code/session_01S4NNgBmLwX74vUaHF91eyA --- Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md b/Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md index 09ce6cf5..ed6b149f 100644 --- a/Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md +++ b/Aspid.FastTools/Assets/Aspid/FastTools/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed +- Renamed UPM package from `com.aspid.fasttools` to `tech.aspid.fasttools` to align with the `tech.*` reverse-domain convention. + ## [1.0.0-rc.3] — 2026-05-25 ### Added