Skip to content

Commit eb8cdcb

Browse files
committed
Remove release scripts and update documentation to reflect changes in release process
1 parent 17ca8c8 commit eb8cdcb

4 files changed

Lines changed: 0 additions & 251 deletions

File tree

README.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -307,13 +307,6 @@ This project uses automated GitHub Actions workflows to create releases with cro
307307
To create a new release:
308308

309309
```bash
310-
# Linux/macOS
311-
./scripts/release.sh v1.0.0
312-
313-
# Windows PowerShell
314-
.\scripts\release.ps1 v1.0.0
315-
316-
# Manual method
317310
git tag -a v1.0.0 -m "Release v1.0.0"
318311
git push origin v1.0.0
319312
```

docs/RELEASE.md

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,6 @@ The release process builds binaries for the following platforms:
3838

3939
1. **Create and push a version tag:**
4040
```bash
41-
# Using the provided script (Linux/macOS)
42-
./scripts/release.sh v1.0.0
43-
44-
# Using PowerShell script (Windows)
45-
.\scripts\release.ps1 v1.0.0
46-
47-
# Manual method
4841
git tag -a v1.0.0 -m "Release v1.0.0"
4942
git push origin v1.0.0
5043
```
@@ -119,29 +112,6 @@ Follow semantic versioning (SemVer):
119112
- Build and upload platform-specific binaries
120113
- Generate and upload checksums
121114

122-
## Release Scripts
123-
124-
### Linux/macOS: `scripts/release.sh`
125-
```bash
126-
# Create and push a release tag
127-
./scripts/release.sh v1.0.0
128-
```
129-
130-
Features:
131-
- Validates version format
132-
- Checks git repository status
133-
- Updates version in code if applicable
134-
- Creates and pushes tag
135-
- Opens release page in browser
136-
137-
### Windows: `scripts/release.ps1`
138-
```powershell
139-
# Create and push a release tag
140-
.\scripts\release.ps1 v1.0.0
141-
```
142-
143-
Same features as the bash script, adapted for PowerShell.
144-
145115
## Makefile Targets
146116

147117
```bash

scripts/release.ps1

Lines changed: 0 additions & 112 deletions
This file was deleted.

scripts/release.sh

Lines changed: 0 additions & 102 deletions
This file was deleted.

0 commit comments

Comments
 (0)