diff --git a/.releaserc.js b/.releaserc.js index 8dd97f7a..49a03866 100644 --- a/.releaserc.js +++ b/.releaserc.js @@ -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', @@ -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', }, ], diff --git a/projects/ngx-meta/docs/prebuild.sh b/projects/ngx-meta/docs/prebuild.sh index 49af141e..fceb82ac 100755 --- a/projects/ngx-meta/docs/prebuild.sh +++ b/projects/ngx-meta/docs/prebuild.sh @@ -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 diff --git a/projects/ngx-meta/src/README.md b/projects/ngx-meta/src/README.md index a668f3e1..60e6816e 100644 --- a/projects/ngx-meta/src/README.md +++ b/projects/ngx-meta/src/README.md @@ -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