diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eb62dd..140a57e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Please check our [developers guide](https://gitlab.com/tokend/developers-guide) for further information about branching and tagging conventions. -## [Unrealised] +## [0.4.0] - 2023-10-10 #### Added - Telegram chats dropdown - Checking is user already exist in submodule @@ -73,7 +73,8 @@ for further information about branching and tagging conventions. #### Under the hood changes - Initiated and setup project -[Unreleased]: https://gitlab.com/distributed_lab/acs/acs-admin-panel/compare/0.3.0...main -[0.3.0]: https://gitlab.com/distributed_lab/acs/acs-admin-panel/compare/0.2.0...0.3.0 -[0.2.0]: https://gitlab.com/distributed_lab/acs/acs-admin-panel/compare/0.1.0...0.2.0 -[0.1.0]: https://gitlab.com/distributed_lab/acs/acs-admin-panel/tags/0.1.0 +[Unreleased]: https://github.com/acs-dl/admin-panel/compare/0.4.0...main +[0.4.0]: https://github.com/acs-dl/admin-panel/compare/0.3.0...0.4.0 +[0.3.0]: https://github.com/acs-dl/admin-panel/compare/0.2.0...0.3.0 +[0.2.0]: https://github.com/acs-dl/admin-panel/compare/0.1.0...0.2.0 +[0.1.0]: https://github.com/acs-dl/admin-panel/tree/0.1.0 diff --git a/package.json b/package.json index 86c4fa5..f6ac10c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "access-control-system", - "version": "0.3.0", + "version": "0.4.0", "gitHooks": { "pre-commit": "yarn lint", "pre-push": "yarn test && yarn rsc" diff --git a/scripts/release-sanity-check.mjs b/scripts/release-sanity-check.mjs index d079913..46fe744 100644 --- a/scripts/release-sanity-check.mjs +++ b/scripts/release-sanity-check.mjs @@ -67,7 +67,7 @@ function validateChangelogHasVersionOnTop () { } function validateChangelogAnchorsLegend () { - const baseRepoUrl = 'https://gitlab.com/distributed_lab/acs/acs-admin-panel' + const baseRepoUrl = 'https://github.com/acs-dl/admin-panel' const anyReleaseTagRe = /## \[\d+\.\d+\.\d+((-rc|-x)\.\d+)?\] - \d{4}-\d{2}-\d{2}/gi @@ -78,7 +78,7 @@ function validateChangelogAnchorsLegend () { .map(tag => tag.match(/\[(.*)\]/)[1]) .map((cur, curId, arr) => { return curId === arr.length - 1 - ? `[${cur}]: ${baseRepoUrl}/tags/${cur}` + ? `[${cur}]: ${baseRepoUrl}/tree/${cur}` : `[${cur}]: ${baseRepoUrl}/compare/${arr[curId + 1]}...${cur}` }) .join('\n')