Skip to content

Commit 7de2f44

Browse files
tomkpclaude
andauthored
docs: update installation and branch references (#857)
- Remove @next tag from installation instructions (v3 is now stable) - Update CONTRIBUTING.md to reference master branch instead of v3 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude <[email protected]>
1 parent c71006a commit 7de2f44

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A bug is a _demonstrable problem_ caused by the code in the repository. Good bug
2020
Guidelines for bug reports:
2121

2222
1. **Search first** — Check if the issue has already been reported.
23-
2. **Test latest** — Try to reproduce it using the latest `v3` branch.
23+
2. **Test latest** — Try to reproduce it using the latest `master` branch.
2424
3. **Isolate** — Create a minimal reproduction using [CodeSandbox](https://codesandbox.io/) or [StackBlitz](https://stackblitz.com/).
2525

2626
A good bug report includes:
@@ -61,11 +61,11 @@ Good pull requests are a fantastic help! They should remain focused and avoid un
6161
git remote add upstream https://github.com/tomkp/react-split-pane
6262
```
6363

64-
2. Create a branch from `v3`:
64+
2. Create a branch from `master`:
6565

6666
```bash
67-
git checkout v3
68-
git pull upstream v3
67+
git checkout master
68+
git pull upstream master
6969
git checkout -b my-feature
7070
```
7171

@@ -97,7 +97,7 @@ Good pull requests are a fantastic help! They should remain focused and avoid un
9797
git commit -m "feat: add new feature"
9898
```
9999

100-
9. Push and open a pull request against `v3`:
100+
9. Push and open a pull request against `master`:
101101

102102
```bash
103103
git push origin my-feature

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ Modern, accessible, TypeScript-first split pane component for React.
2323
## Installation
2424

2525
```bash
26-
npm install react-split-pane@next
26+
npm install react-split-pane
2727

2828
# or
29-
yarn add react-split-pane@next
29+
yarn add react-split-pane
3030

3131
# or
32-
pnpm add react-split-pane@next
32+
pnpm add react-split-pane
3333
```
3434

3535
## Quick Start

0 commit comments

Comments
 (0)