Skip to content

Commit

Permalink
chore: configuration file and script for versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
cgx committed Mar 26, 2021
1 parent bbf0ff7 commit 3693033
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 28 deletions.
27 changes: 27 additions & 0 deletions .versionrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
const tracker = {
filename: "Version",
updater: require("./Scripts/standard-version-updater.js")
}

module.exports = {
tagPrefix: "SOGo-",
issueUrlFormat: "https://sogo.nu/bugs/view.php?id={{id}}",
compareUrlFormat: "{{host}}/{{owner}}/{{repository}}/compare/{{previousTag}}...{{currentTag}}",
types: [
{type: "feat", section: "Features"},
{type: "refactor", section: "Enhancements"},
{type: "perf", section: "Enhancements"},
{type: "i18n", section: "Localization"},
{type: "fix", section: "Bug Fixes"},
{type: "chore", hidden: true},
{type: "docs", hidden: true},
{type: "style", hidden: true},
{type: "test", hidden: true}
],
skip: {
commit: true,
tag: true
},
packageFiles: [tracker],
bumpFiles: [tracker]
}
26 changes: 0 additions & 26 deletions .versionrc.json

This file was deleted.

1 change: 0 additions & 1 deletion packaging/debian-multiarch/sogo.docs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
CHANGELOG.md
Scripts/*.js
Scripts/*.sh
Scripts/updates.php
Apache/SOGo-apple-ab.conf
1 change: 0 additions & 1 deletion packaging/debian/sogo.docs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
CHANGELOG.md
Scripts/*.js
Scripts/*.sh
Scripts/updates.php
Apache/SOGo-apple-ab.conf

0 comments on commit 3693033

Please sign in to comment.