From 1dafac60ed63d6c920bc8935a37d0c8c2ca462a4 Mon Sep 17 00:00:00 2001 From: Yehor Podporinov Date: Mon, 9 Oct 2023 17:42:28 +0300 Subject: [PATCH 1/3] updated CHANGELOG.md, updated verison in package.json --- CHANGELOG.md | 10 +++++----- package.json | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0eb62dd..53407d6 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-07-05 #### Added - Telegram chats dropdown - Checking is user already exist in submodule @@ -73,7 +73,7 @@ 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 +[0.4.0]: https://github.com/acs-dl/admin-panel/compare/v0.3.0...v0.4.0 +[0.3.0]: https://github.com/acs-dl/admin-panel/compare/v0.2.0...v0.3.0 +[0.2.0]: https://github.com/acs-dl/admin-panel/compare/v0.1.0...v0.2.0 +[0.1.0]: https://github.com/acs-dl/admin-panel/tree/v0.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" From b3117a42442766425c0ac52f8de04f3910291add Mon Sep 17 00:00:00 2001 From: Yehor Podporinov Date: Tue, 10 Oct 2023 11:40:23 +0300 Subject: [PATCH 2/3] changed release date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53407d6..25aecff 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. -## [0.4.0] - 2023-07-05 +## [0.4.0] - 2023-10-10 #### Added - Telegram chats dropdown - Checking is user already exist in submodule From 8d8c7fe9cf7d3b91fc6d4e0f1b637d07f809f030 Mon Sep 17 00:00:00 2001 From: Yehor Podporinov Date: Tue, 10 Oct 2023 12:34:56 +0300 Subject: [PATCH 3/3] updated links in CHANGELOG.md --- CHANGELOG.md | 9 +++++---- scripts/release-sanity-check.mjs | 4 ++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25aecff..140a57e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -73,7 +73,8 @@ for further information about branching and tagging conventions. #### Under the hood changes - Initiated and setup project -[0.4.0]: https://github.com/acs-dl/admin-panel/compare/v0.3.0...v0.4.0 -[0.3.0]: https://github.com/acs-dl/admin-panel/compare/v0.2.0...v0.3.0 -[0.2.0]: https://github.com/acs-dl/admin-panel/compare/v0.1.0...v0.2.0 -[0.1.0]: https://github.com/acs-dl/admin-panel/tree/v0.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/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')