Commit 338cb06
authored
fix: implement complete release system with release-plz (#209)
* chore: remove all release infrastructure
Complete removal of release tooling including:
- release-plz configuration
- cargo-dist configuration
- cliff changelog generator
- GitHub Actions workflows for releases
- Debug release scripts
Starting fresh to properly configure release automation
* chore: remove tag-on-merge workflow
Part of complete release infrastructure removal
* chore: complete removal of all release infrastructure
- Remove docker-publish workflow that triggered on releases
- Remove old release process documentation
- Clean slate for new release system
* feat: implement complete release system with release-plz
- Configure workspace versioning (all crates share same version)
- Add release-plz.toml with single tag format (v{version})
- Add cliff.toml for changelog generation
- Add GitHub workflows for release-plz and Docker builds
- Initialize cargo-dist for binary distribution
- Create multi-stage Dockerfile with Alpine
Release flow:
1. Push to main triggers release-plz to create PR
2. PR contains version bumps for all crates
3. Merge creates single tag (v0.x.x format)
4. Tag triggers cargo-dist for binaries and Docker builds
5. All three crates publish to crates.io
* chore: remove duplicate Dockerfile.alpine
* fix: improve release-plz configuration
- Add version_group to ensure all packages share same version
- Add explicit git_tag_enable = true
- Add semver_check for breaking change detection
- Add pr_labels for release PRs
- Add publish_timeout and other best practices from real-world usage
* fix: update release-plz action to latest version v0.5.114
Pin to specific version for reproducible builds
* fix: use floating v0.5 tag for release-plz action
Following pattern used by octocrab and other successful projects.
The docs appear to be incorrect about release-plz/release-plz.1 parent 1a74f31 commit 338cb06
File tree
18 files changed
+137
-1180
lines changed- .github/workflows
- crates
- redis-cloud
- redis-enterprise
- redisctl
- docs
- scripts
18 files changed
+137
-1180
lines changedThis file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | | - | |
5 | 4 | | |
6 | 5 | | |
7 | | - | |
8 | | - | |
9 | | - | |
| 6 | + | |
10 | 7 | | |
11 | 8 | | |
12 | 9 | | |
13 | 10 | | |
14 | 11 | | |
15 | 12 | | |
16 | 13 | | |
| 14 | + | |
17 | 15 | | |
18 | 16 | | |
19 | 17 | | |
20 | 18 | | |
21 | | - | |
22 | 19 | | |
23 | 20 | | |
24 | 21 | | |
25 | 22 | | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
26 | 31 | | |
27 | 32 | | |
28 | 33 | | |
| |||
32 | 37 | | |
33 | 38 | | |
34 | 39 | | |
35 | | - | |
36 | | - | |
37 | | - | |
| 40 | + | |
| 41 | + | |
38 | 42 | | |
39 | | - | |
40 | | - | |
41 | | - | |
| 43 | + | |
| 44 | + | |
42 | 45 | | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
52 | 49 | | |
53 | 50 | | |
54 | 51 | | |
55 | 52 | | |
56 | 53 | | |
57 | | - | |
| 54 | + | |
58 | 55 | | |
59 | 56 | | |
60 | | - | |
61 | | - | |
| 57 | + | |
| 58 | + | |
| 59 | + | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
| 63 | + | |
62 | 64 | | |
63 | 65 | | |
64 | | - | |
65 | | - | |
This file was deleted.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
42 | 42 | | |
43 | 43 | | |
44 | 44 | | |
45 | | - | |
| 45 | + | |
46 | 46 | | |
47 | 47 | | |
48 | 48 | | |
| |||
This file was deleted.
0 commit comments