Skip to content

Commit

Permalink
chore(release): 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
anishkny committed Sep 15, 2019
1 parent 560ad90 commit a634cac
Showing 2 changed files with 50 additions and 11 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,17 @@

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.2.2](https://github.com/anishkny/integrify/compare/v2.2.1...v2.2.2) (2019-09-15)


### Chores

* Add prepublishOnly script ([#33](https://github.com/anishkny/integrify/issues/33)) ([2aae2a6](https://github.com/anishkny/integrify/commit/2aae2a6))
* **changelog:** Include all commit types ([#35](https://github.com/anishkny/integrify/issues/35)) ([5c0b50c](https://github.com/anishkny/integrify/commit/5c0b50c))
* **changelog:** Name sections appropriately ([560ad90](https://github.com/anishkny/integrify/commit/560ad90))
* **script:** Add release script ([fc7f3a6](https://github.com/anishkny/integrify/commit/fc7f3a6))
* **scripts:** Add pre-commit, commit-msg husky hooks ([#34](https://github.com/anishkny/integrify/issues/34)) ([2cb0bba](https://github.com/anishkny/integrify/commit/2cb0bba))

### [2.2.1](https://github.com/anishkny/integrify/compare/v2.2.0...v2.2.1) (2019-08-20)

## [2.2.0](https://github.com/anishkny/integrify/compare/v2.1.0...v2.2.0) (2019-08-20)
50 changes: 39 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "integrify",
"version": "2.2.1",
"version": "2.2.2",
"description": "Enforce referential integrity in Firestore using Cloud Functions",
"keywords": [
"firebase",
@@ -62,26 +62,54 @@
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint --verbose --env HUSKY_GIT_PARAMS"
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [2, "always", "sentence-case"]
"subject-case": [
2,
"always",
"sentence-case"
]
}
},
"standard-version": {
"types": [
{"type": "feat", "section": "Features"},
{"type": "fix", "section": "Bug Fixes"},
{"type": "chore", "section": "Chores"},
{"type": "docs", "section": "Docs"},
{"type": "style", "section": "Style"},
{"type": "refactor", "section": "Refactor"},
{"type": "perf", "section": "Performance"},
{"type": "test", "section": "Tests"}
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Chores"
},
{
"type": "docs",
"section": "Docs"
},
{
"type": "style",
"section": "Style"
},
{
"type": "refactor",
"section": "Refactor"
},
{
"type": "perf",
"section": "Performance"
},
{
"type": "test",
"section": "Tests"
}
]
}
}

0 comments on commit a634cac

Please sign in to comment.