From c44a79b27c6a51bf71202b5aaa217c3233d31957 Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Wed, 18 Oct 2017 21:53:40 +0200 Subject: [PATCH 1/2] docs: add commit guidelines --- CONTRIBUTING.md | 28 ++++++++++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aeecef5cb..61c5005a0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -157,11 +157,35 @@ $ git status # # modified: somefile.js # -$ git commit -m "Corrects some defect, fixes #12345, refs #12346" -[t12345 0000000] Corrects some defect, fixes #12345, refs #12346 +$ git commit -m "fix: correct some defect, fixes #12345, refs #12346" +[t12345 0000000] fix: correct some defect, fixes #12345, refs #12346 1 file changed, 2 insertions(+), 2 deletions(-) ``` +#### Git Commit Guidelines + +We follow the [conventional commit messages](https://conventionalcommits.org/) convention in order to automate Changelog generation and auto semantic versioning based on commit messages. + +* feat: A new feature +* fix: A bug fix + +A commit of the type feat introduces a new feature to the codebase (this correlates with MINOR in semantic versioning). + +eg: +``` +feat: xxxxxxxxxx +```` + +A commit of the type fix patches a bug in your codebase (this correlates with PATCH in semantic versioning). + +eg: +``` +fix: xxxxxxxxxx +```` + +Commits types as `docs:`,`style:`,`refactor:`,`perf:`,`test:` and `chore:` are valid but has no effect on versioning, but, it would be great if you use them. + + ### 5. Rebase and Push Changes If you have been working on your contribution for a while, the upstream repository may have changed. You may want to From e844ffa387f514a1d07476522fa2d9b32422ebae Mon Sep 17 00:00:00 2001 From: "Juan Picado @jotadeveloper" Date: Wed, 18 Oct 2017 22:19:24 +0200 Subject: [PATCH 2/2] chore(release): 2.6.0 --- CHANGELOG.md | 15 +++++++++++++++ package.json | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3beac8da..f8505c25c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +# [2.6.0](https://github.com/verdaccio/verdaccio/compare/v2.5.1...v2.6.0) (2017-10-18) + + +### Bug Fixes + +* plugin loader with logs ([d6ed202](https://github.com/verdaccio/verdaccio/commit/d6ed202)) + + +### Features + +* add pfx support for https ([c84d567](https://github.com/verdaccio/verdaccio/commit/c84d567)) + + + ## [2.5.1](https://github.com/verdaccio/verdaccio/compare/v2.5.0...v2.5.1) (2017-10-01) diff --git a/package.json b/package.json index db785e8b4..01f358449 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "verdaccio", - "version": "2.5.1", + "version": "2.6.0", "description": "Private npm repository server", "author": { "name": "Alex Kocharin",