Skip to content

Commit

Permalink
Merge pull request #6 from acs-dl/fix/v0.4.0-info
Browse files Browse the repository at this point in the history
fix/v0.4.0-info
  • Loading branch information
yehor-podporinov authored Oct 10, 2023
2 parents 9ea78ff + 8d8c7fe commit 3b0d0a7
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions scripts/release-sanity-check.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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')
Expand Down

0 comments on commit 3b0d0a7

Please sign in to comment.