Skip to content

Commit

Permalink
chore: promote first beta version (#452)
Browse files Browse the repository at this point in the history
BETA RELEASE
  • Loading branch information
davidlj95 authored Mar 21, 2024
1 parent 0aa6cca commit 695d01f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .releaserc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
*/
module.exports = {
branches: [
//👇 Fake branch so that we can release alpha versions in `main`
//👇 Fake branch so that we can release beta versions in `main`
// until we can release 1.0.0
'semantic-release',
{ name: 'main', prerelease: 'alpha' },
{ name: 'main', prerelease: 'beta' },
],
plugins: [
'@semantic-release/commit-analyzer',
Expand Down Expand Up @@ -92,9 +92,9 @@ module.exports = {
subject: '*maintenance*',
release: 'patch',
},
// Trigger an alpha release
// Trigger a beta release
{
body: '*ALPHA RELEASE*',
body: '*BETA RELEASE*',
release: 'patch',
},
],
Expand Down
2 changes: 1 addition & 1 deletion projects/ngx-meta/docs/prebuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ README_FILE="../src/$README_FILENAME"
# Everything but last x lines
sed "s|../docs/content||g" $README_FILE | # Fix logo path
sed "s/> \([A-Z]\)/ \1/g" | # Remove quoted block + proper admonition 👇
sed "s/> \[!IMPORTANT\]/!!! warning \"Alpha version\"\n/g" \
sed "s/> \[!NOTE\]/!!! note \"Beta version\"\n/g" \
> "$INCLUDES_DIR/$README_FILENAME"

# 📅 CHANGELOG.md
Expand Down
6 changes: 3 additions & 3 deletions projects/ngx-meta/src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ Supports SSR (and Angular Universal).
Use a service. Use routes' data.
Set it up in a flash! 🚀

> [!IMPORTANT]
> Current version is still an alpha, so APIs may change at any time
> When it's finally stable, 1.0.0 version will be published
> [!NOTE]
> Current version is a beta. APIs are now very stable and very open for feedback.
> Version 1.0.0 will be published after it has been in the wild for a while
## Motivation

Expand Down

0 comments on commit 695d01f

Please sign in to comment.