Skip to content

Commit

Permalink
Change alpha to dev
Browse files Browse the repository at this point in the history
We found `alpha` to be lacking: `1.42.0.alpha.foobar` kind of makes one
think that `1.42.0` is the next version when it is actually the last one
released. `1.42.0.dev.foobar` better reflects expectations that this is
a development version based on `1.42.0`.
  • Loading branch information
lloeki committed Apr 26, 2023
1 parent c321f67 commit 81838ed
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build-gem.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
matrix:
type:
- final
- alpha
- dev
runs-on: ubuntu-latest
name: Build gem (${{ matrix.type }})
steps:
Expand Down Expand Up @@ -56,7 +56,8 @@ jobs:
echo git_sha_short="${git_sha_short}"
# Set component values:
# - PRE is `alpha` to be ordered before `beta` and `rc`
# - PRE is `dev` to denote being a development version and
# act as a categorizer.
# - BUILD starts with CI run id for ordering.
# - BUILD has CI run id for traceability, prefixed by `gha`
# for identification.
Expand Down Expand Up @@ -105,7 +106,7 @@ jobs:
matrix:
type:
- final
- alpha
- dev
runs-on: ubuntu-latest
name: Test gem
needs:
Expand All @@ -130,7 +131,7 @@ jobs:
fail-fast: false
matrix:
type:
- alpha
- dev
runs-on: ubuntu-latest
name: Push gem
needs:
Expand Down

0 comments on commit 81838ed

Please sign in to comment.