Skip to content

Commit aeee955

Browse files
committed
Make the first release
1 parent 7388fce commit aeee955

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
### **CHANGELOG.md**
2+
```markdown
3+
# Changelog
4+
5+
All notable changes to this project will be documented in this file.
6+
7+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
8+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
9+
10+
## [1.0.0] - 2025-10-12
11+
12+
### Added
13+
- Initial release
14+
- Thread-safe action queue processing
15+
- Multiple dispatch methods (immediate, delayed, next frame, end of frame)
16+
- Async/await support with custom awaiter
17+
- Interface-based design for dependency injection
18+
- Modular architecture with separated concerns
19+
- Comprehensive documentation and examples
20+
- Unity Package Manager support

package.json

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "com.techdigga.uithreaddispatcher",
3-
"version": "0.0.1",
3+
"version": "1.0.0",
44
"displayName": "UI Thread Dispatcher",
55
"description": "A modular, thread-safe dispatcher for marshalling calls to Unity's main thread with async/await support.",
66
"unity": "2020.3",
@@ -13,19 +13,11 @@
1313
],
1414
"author": {
1515
"name": "techdigga",
16-
"email": "your.email@example.com",
1716
"url": "https://github.com/techdigga"
1817
},
1918
"repository": {
2019
"type": "git",
2120
"url": "https://github.com/techdigga/unity-ui-thread-dispatcher.git"
2221
},
23-
"license": "MIT",
24-
"samples": [
25-
{
26-
"displayName": "Basic Usage Examples",
27-
"description": "Simple examples showing common usage patterns",
28-
"path": "Samples~/BasicUsage"
29-
}
30-
]
22+
"license": "MIT"
3123
}

0 commit comments

Comments
 (0)