shadcn-glass-ui 1.0.6 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +45 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,51 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.7] - 2025-12-06
|
|
9
|
+
|
|
10
|
+
### 🔄 Changed
|
|
11
|
+
|
|
12
|
+
**Package Name:**
|
|
13
|
+
- Renamed package from `@yhooi2/shadcn-glass-ui` to `shadcn-glass-ui`
|
|
14
|
+
- Simpler installation: `npm install shadcn-glass-ui`
|
|
15
|
+
- **Migration:** Update your `package.json` dependencies from `@yhooi2/shadcn-glass-ui` to `shadcn-glass-ui`
|
|
16
|
+
|
|
17
|
+
**Publishing:**
|
|
18
|
+
- Now publishing only to npm Registry (removed GitHub Packages)
|
|
19
|
+
- Simplified installation - no authentication required
|
|
20
|
+
- Single source of truth for package distribution
|
|
21
|
+
|
|
22
|
+
### 📚 Documentation
|
|
23
|
+
|
|
24
|
+
- Updated all documentation to reflect new package name
|
|
25
|
+
- Removed GitHub Packages installation instructions
|
|
26
|
+
- Updated README badges and links
|
|
27
|
+
- Simplified installation guide
|
|
28
|
+
|
|
29
|
+
### 🗑️ Removed
|
|
30
|
+
|
|
31
|
+
- GitHub Packages publishing workflow
|
|
32
|
+
- GitHub Packages documentation
|
|
33
|
+
- Removed cyclic self-dependency from package.json
|
|
34
|
+
|
|
35
|
+
### 📦 Migration Guide
|
|
36
|
+
|
|
37
|
+
If you're upgrading from `@yhooi2/shadcn-glass-ui`:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
# Uninstall old package
|
|
41
|
+
npm uninstall @yhooi2/shadcn-glass-ui
|
|
42
|
+
|
|
43
|
+
# Install new package
|
|
44
|
+
npm install shadcn-glass-ui
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
Update your imports (no changes needed - imports remain the same):
|
|
48
|
+
```tsx
|
|
49
|
+
// Still works the same way
|
|
50
|
+
import { ButtonGlass, InputGlass } from 'shadcn-glass-ui';
|
|
51
|
+
```
|
|
52
|
+
|
|
8
53
|
## [1.0.6] - 2025-12-06
|
|
9
54
|
|
|
10
55
|
### 🔄 Changed
|
package/package.json
CHANGED