Skip to content

Commit 00af096

Browse files
chore: prepare v0.1.3 release for JSR.io publication
- Bump version to 0.1.3 - Update CHANGELOG and README for JSR availability - Add v0.1.3 release notes to consolidated file - Ready for first successful JSR.io publication This release marks the availability of typescript2cxx on JSR.io package registry for easy installation. 🤖 Generated with Claude Code Co-Authored-By: Claude <[email protected]>
1 parent 1bdb84b commit 00af096

File tree

4 files changed

+60
-2
lines changed

4 files changed

+60
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.3] - 2025-08-06
11+
12+
### Added
13+
14+
- feat: First official JSR.io publication
15+
- feat: Package now available at jsr.io/@wowemulation-dev/typescript2cxx
16+
17+
### Documentation
18+
19+
- docs: Consolidated v0.1.x release notes into single file
20+
- docs: Updated installation instructions to prioritize JSR
21+
22+
### Notes
23+
24+
This release marks the first successful publication to JSR.io. The package
25+
is now easily installable via `deno add` and `deno install` commands.
26+
All functionality remains the same as v0.1.2.
27+
1028
## [0.1.2] - 2025-08-06
1129

1230
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ deno run --allow-net --allow-read --allow-write src/cli.ts --runtime "my/runtime
186186

187187
## Current Status
188188

189-
**Version: 0.1.2** - Production Ready with JSR.io Publishing
189+
**Version: 0.1.3** - Available on JSR.io
190190

191191
The transpiler successfully generates working C++20 code that compiles and runs:
192192

RELEASE_NOTES_v0.1.x.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,3 +227,43 @@ import { transpile } from "@wowemulation-dev/typescript2cxx";
227227
```
228228

229229
**Full Changelog**: <https://github.com/wowemulation-dev/typescript2cxx/releases/tag/v0.1.2>
230+
231+
---
232+
233+
## typescript2cxx v0.1.3 - First JSR.io Publication
234+
235+
Released: 2025-08-06
236+
237+
### 🎉 Published on JSR.io!
238+
239+
This release marks the first successful publication to JSR.io. typescript2cxx is now available at:
240+
**[jsr.io/@wowemulation-dev/typescript2cxx](https://jsr.io/@wowemulation-dev/typescript2cxx)**
241+
242+
### 📦 What's New
243+
244+
- **JSR.io Publication**: Package successfully published and available
245+
- **Easy Installation**: Full JSR ecosystem integration
246+
- **Documentation Updates**: Consolidated release notes for v0.1.x series
247+
248+
### Installation
249+
250+
Install directly from JSR:
251+
252+
```bash
253+
# Global CLI installation
254+
deno install -Arf -n tsc2cxx jsr:@wowemulation-dev/typescript2cxx/cli
255+
256+
# Add to your project
257+
deno add @wowemulation-dev/typescript2cxx
258+
```
259+
260+
Use in your code:
261+
262+
```typescript
263+
import { transpile } from "@wowemulation-dev/typescript2cxx";
264+
```
265+
266+
All functionality remains the same as v0.1.2. This release focuses on
267+
making the package available through JSR.io's package registry.
268+
269+
**Full Changelog**: <https://github.com/wowemulation-dev/typescript2cxx/releases/tag/v0.1.3>

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wowemulation-dev/typescript2cxx",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"license": "MIT OR Apache-2.0",
55
"exports": {
66
".": "./src/mod.ts",

0 commit comments

Comments
 (0)