Skip to content

Commit 53502d7

Browse files
claudejaredpalmer
authored andcommitted
docs: update version references from 1.0 to 2.0
Skip version 1.0 and jump to 2.0 across all documentation and markdown files including README, CLAUDE.md, MIGRATION.md, changeset, and website docs.
1 parent d53b9be commit 53502d7

File tree

7 files changed

+17
-17
lines changed

7 files changed

+17
-17
lines changed

.changeset/initial-release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"tsdx": major
33
---
44

5-
Initial 1.0.0 release - complete rewrite with modern Rust-based tooling
5+
Initial 2.0.0 release - complete rewrite with modern Rust-based tooling
66

77
- Bundling with bunchee
88
- Testing with vitest

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides guidance to Claude Code (claude.ai/code) when working with co
44

55
## Project Overview
66

7-
TSDX is a zero-config CLI for TypeScript package development. Version 1.0 is a complete rewrite using modern Rust-based tooling: bunchee (bundling), vitest (testing), oxlint (linting), and oxfmt (formatting).
7+
TSDX is a zero-config CLI for TypeScript package development. Version 2.0 is a complete rewrite using modern Rust-based tooling: bunchee (bundling), vitest (testing), oxlint (linting), and oxfmt (formatting).
88

99
## Development Commands
1010

MIGRATION.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Migration Guide: TSDX v0.x to v1.0
1+
# Migration Guide: TSDX v0.x to v2.0
22

3-
This guide helps you migrate from the original TSDX (v0.x) to the modern TSDX 1.0.
3+
This guide helps you migrate from the original TSDX (v0.x) to the modern TSDX 2.0.
44

55
## What's Changed
66

7-
TSDX 1.0 is a complete rewrite that replaces the original toolchain with modern, high-performance alternatives:
7+
TSDX 2.0 is a complete rewrite that replaces the original toolchain with modern, high-performance alternatives:
88

9-
| Old (v0.x) | New (v1.0) | Why |
9+
| Old (v0.x) | New (v2.0) | Why |
1010
|------------|------------|-----|
1111
| Rollup + Babel | [bunchee](https://github.com/huozhi/bunchee) | Zero-config, SWC-powered, faster |
1212
| Jest | [vitest](https://vitest.dev/) | Vite-native, faster, Jest-compatible |

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Zero-config CLI for TypeScript package development.
88

99
Modern TypeScript library development, simplified. TSDX provides a zero-config CLI that helps you develop, test, and publish TypeScript packages with ease.
1010

11-
> **TSDX 1.0** is a complete rewrite using modern, high-performance Rust-based tooling. See the [Migration Guide](./MIGRATION.md) if upgrading from v0.x
11+
> **TSDX 2.0** is a complete rewrite using modern, high-performance Rust-based tooling. See the [Migration Guide](./MIGRATION.md) if upgrading from v0.x
1212
1313
## Features
1414

@@ -241,7 +241,7 @@ The `package.json` exports field is configured automatically:
241241

242242
## Tool Stack
243243

244-
TSDX 1.0 uses modern, high-performance tools:
244+
TSDX 2.0 uses modern, high-performance tools:
245245

246246
| Tool | Purpose | Performance |
247247
|------|---------|-------------|
@@ -374,7 +374,7 @@ Contributions are welcome! Please see [CONTRIBUTING.md](./CONTRIBUTING.md) for g
374374

375375
## Acknowledgments
376376

377-
TSDX 1.0 is built on the shoulders of giants:
377+
TSDX 2.0 is built on the shoulders of giants:
378378

379379
- [bunchee](https://github.com/huozhi/bunchee) by Jiachi Liu
380380
- [vitest](https://vitest.dev/) by the Vitest team

website/app/(home)/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ export default function HomePage() {
263263
Powered by Modern Tools
264264
</h2>
265265
<p className="text-lg text-fd-muted-foreground mb-12">
266-
TSDX 1.0 is built on the fastest, most modern tools in the ecosystem.
266+
TSDX 2.0 is built on the fastest, most modern tools in the ecosystem.
267267
</p>
268268

269269
<div className="grid grid-cols-2 md:grid-cols-4 gap-6">

website/content/docs/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ description: Zero-config CLI for TypeScript package development
77

88
**TSDX is a zero-config CLI that helps you develop, test, and publish modern TypeScript packages** with ease—so you can focus on your awesome new library and not waste another afternoon on configuration.
99

10-
<Callout type="info" title="TSDX 1.0">
11-
TSDX 1.0 is a complete rewrite using modern, high-performance Rust-based tooling. See the [Migration Guide](/docs/migration) if upgrading from v0.x.
10+
<Callout type="info" title="TSDX 2.0">
11+
TSDX 2.0 is a complete rewrite using modern, high-performance Rust-based tooling. See the [Migration Guide](/docs/migration) if upgrading from v0.x.
1212
</Callout>
1313

1414
## Features
@@ -23,7 +23,7 @@ description: Zero-config CLI for TypeScript package development
2323

2424
## Tool Stack
2525

26-
TSDX 1.0 uses modern, high-performance tools:
26+
TSDX 2.0 uses modern, high-performance tools:
2727

2828
| Tool | Purpose | Performance |
2929
|------|---------|-------------|

website/content/docs/migration.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: Migration Guide
3-
description: Migrating from TSDX v0.x to v1.0
3+
description: Migrating from TSDX v0.x to v2.0
44
---
55

66
# Migration Guide
77

8-
This guide helps you migrate from the original TSDX (v0.x) to the modern TSDX 1.0.
8+
This guide helps you migrate from the original TSDX (v0.x) to the modern TSDX 2.0.
99

1010
## What's Changed
1111

12-
TSDX 1.0 is a complete rewrite that replaces the original toolchain with modern, high-performance alternatives:
12+
TSDX 2.0 is a complete rewrite that replaces the original toolchain with modern, high-performance alternatives:
1313

14-
| Old (v0.x) | New (v1.0) | Why |
14+
| Old (v0.x) | New (v2.0) | Why |
1515
|------------|------------|-----|
1616
| Rollup + Babel | [bunchee](https://github.com/huozhi/bunchee) | Zero-config, SWC-powered, faster |
1717
| Jest | [vitest](https://vitest.dev/) | Vite-native, faster, Jest-compatible |

0 commit comments

Comments
 (0)