diff --git a/RELEASE.md b/RELEASE.md index 3379b40f3720..bb40b611ebe5 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -191,7 +191,7 @@ Merge `stable` into `unstable`, resolving conflicts: - `git checkout unstable && git merge stable` - Resolve conflicts -- Sanity check locally before pushing by using: `git diff unstable origin/unstable` +- Sanity check locally before pushing by using: `git diff origin/unstable unstable` - Disable `unstable` branch protection - `git push` - Enable `unstable` branch protection diff --git a/packages/params/CHANGELOG.md b/packages/params/CHANGELOG.md deleted file mode 100644 index 20c296a0d5c7..000000000000 --- a/packages/params/CHANGELOG.md +++ /dev/null @@ -1,19 +0,0 @@ -# Changelog - -All notable changes to this project will be documented in this file. - -The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -### [Unreleased] - -#### Breaking change - -- presets now export {params: IBeaconPreset} instead of {...IBeaconPreset} - -## [0.2.0] - -### Added - -- `RANDOM_SUBNETS_PER_VALIDATOR` and `EPOCHS_PER_RANDOM_SUBNET_SUBSCRIPTION` constant params -- TODO: check what else is added diff --git a/scripts/generate_changelog.mjs b/scripts/generate_changelog.mjs index cd809622c5ea..de697e23612b 100644 --- a/scripts/generate_changelog.mjs +++ b/scripts/generate_changelog.mjs @@ -24,7 +24,7 @@ import fs from "node:fs"; const knownAuthors = { "caymannava@gmail.com": "wemeetagain", "develop@g11tech.io": "g11tech", - "tuyen@chainsafe.io": "tuyennhv", + "tuyen@chainsafe.io": "twoeths", "35266934+dapplion@users.noreply.github.com": "dapplion", "41898282+github-actions[bot]@users.noreply.github.com": "github-actions[bot]", "49699333+dependabot[bot]@users.noreply.github.com": "dependabot[bot]", @@ -42,6 +42,7 @@ const knownAuthors = { "nflaig@protonmail.com": "nflaig", "nazarhussain@gmail.com": "nazarhussain", "me@matthewkeil.com": "matthewkeil", + "17676176+ensi321@users.noreply.github.com": "ensi321", }; const fromTag = process.argv[2];