Skip to content

Commit

Permalink
1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
napalmpapalam committed Dec 11, 2023
1 parent 62e81ef commit 6d3e88b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog], and this project adheres to [Semantic Versioning].

## [Unreleased]

## [1.0.0] - 2023-12-11
### Added
- QA environment CI job

Expand All @@ -23,7 +25,8 @@ The format is based on [Keep a Changelog], and this project adheres to [Semantic

- Initiated project

[Unreleased]: https://gitlab.com/rarimo/collabland-rarimo-poh-action/compare/0.1.0...HEAD
[0.1.0]: https://gitlab.com/rarimo/collabland-rarimo-poh-action/tags/0.1.0
[Unreleased]: https://github.com/rarimo/collabland-rarimo-poh-action/compare/1.0.0...HEAD
[1.0.0]: https://github.com/rarimo/collabland-rarimo-poh-action/compare/0.1.0...1.0.0
[0.1.0]: https://github.com/rarimo/collabland-rarimo-poh-action/releases/tag/0.1.0
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "collabland-rarimo-poh-action",
"description": "Implementation of the Collab.Land action /verify command for the Discord server which allows members to verify their humanity using the Rarimo Proof of Humanity case.",
"version": "0.1.0",
"version": "1.0.0",
"private": true,
"license": "MIT",
"author": "Zero Block Global Foundation",
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 @@ -64,7 +64,7 @@ function validateChangelogHasVersionOnTop() {
}

function validateChangelogAnchorsLegend() {
const baseRepoUrl = 'https://gitlab.com/rarimo/collabland-rarimo-poh-action'
const baseRepoUrl = 'https://github.com/rarimo/collabland-rarimo-poh-action'
const anyReleaseTagRe = /## \[\d+\.\d+\.\d+((-rc|-x)\.\d+)?\] - \d{4}-\d{2}-\d{2}/gi

const expectedAnchorsLegend =
Expand All @@ -73,7 +73,7 @@ function validateChangelogAnchorsLegend() {
.map(tag => tag.match(/\[(.*)\]/)[1])
.map((cur, curId, arr) => {
return curId === arr.length - 1
? `[${cur}]: ${baseRepoUrl}/tags/${cur}`
? `[${cur}]: ${baseRepoUrl}/releases/tag/${cur}`
: `[${cur}]: ${baseRepoUrl}/compare/${arr[curId + 1]}...${cur}`
})
.join('\n')
Expand Down

0 comments on commit 6d3e88b

Please sign in to comment.