File: CONTRIBUTING.md

package info (click to toggle)
direnv 2.37.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 872 kB
  • sloc: sh: 1,499; csh: 83; makefile: 7
file content (24 lines) | stat: -rw-r--r-- 565 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Making a new release

The release process is now fully automated. Simply run:

```bash
make prepare-release VERSION=v2.37.0
```

This will:
1. Generate and open the changelog for editing
2. Prompt for confirmation to proceed
3. Update version.txt with the new version
4. Create a release branch and PR
5. Wait for the PR to be merged
6. Create and push the git tag
7. Trigger CI to build and publish the release automatically

## Testing releases

To test the release process on your fork:

```bash
make prepare-release VERSION=v2.37.0-test REPO=Mic92/direnv
```