Skip to content

Commit 47b0b49

Browse files
committed
Add in changelog to explain patch applied for v1.0.1.
1 parent 5d613e4 commit 47b0b49

3 files changed

Lines changed: 26 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ coverage/
2121
*.swo
2222
*.md
2323
!README.md
24+
!CHANGELOG.md
2425

2526
# OS
2627
.DS_Store

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [1.0.1] - 2025-01-19
9+
10+
### Fixed
11+
12+
- Fixed CommonJS (.cjs) exports not being included in the published package. The tsup build configuration now correctly outputs `index.cjs` for CommonJS and `index.js` for ESM, matching the package.json exports.
13+
14+
## [1.0.0] - 2025-01-17
15+
16+
### Added
17+
18+
- Initial release
19+
- Full REST API coverage for TopstepX trading API
20+
- Real-time WebSocket data feeds via Microsoft SignalR
21+
- Automatic token management with refresh
22+
- Complete TypeScript type definitions
23+
- Dual ESM/CommonJS support

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"files": [
3333
"dist",
3434
"README.md",
35-
"LICENSE"
35+
"LICENSE",
36+
"CHANGELOG.md"
3637
],
3738
"sideEffects": false,
3839
"engines": {

0 commit comments

Comments
 (0)