Skip to content

Commit 77ac41e

Browse files
committed
chore(release): 0.0.2
1 parent 3e84cff commit 77ac41e

File tree

3 files changed

+47
-11
lines changed

3 files changed

+47
-11
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
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.
44

5+
### [0.0.2](https://github.com/JanMalch/comparing/compare/v0.0.1...v0.0.2) (2019-12-19)
6+
7+
8+
### Features
9+
10+
* **core:** add comparator factory 'ofOrder' ([edf7097](https://github.com/JanMalch/comparing/commit/edf7097))
11+
* add reversedOrder comparator ([a8368a2](https://github.com/JanMalch/comparing/commit/a8368a2))
12+
* add strictNullChecks to tsconfig ([757d477](https://github.com/JanMalch/comparing/commit/757d477))
13+
514
### 0.0.1 (2019-09-02)
615

716

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 37 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "comparing",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Easily create descriptive comparators",
55
"keywords": [
66
"typescript",
@@ -92,15 +92,42 @@
9292
"$schema": "http://json-schema.org/draft-07/schema#",
9393
"header": "",
9494
"types": [
95-
{ "type": "feat", "section": "Features" },
96-
{ "type": "fix", "section": "Bug Fixes" },
97-
{ "type": "chore", "hidden": true },
98-
{ "type": "docs", "hidden": true },
99-
{ "type": "style", "hidden": true },
100-
{ "type": "refactor", "section": "Code Refactoring" },
101-
{ "type": "perf", "section": "Performance Improvements" },
102-
{ "type": "test", "hidden": true },
103-
{ "type": "build", "hidden": true }
95+
{
96+
"type": "feat",
97+
"section": "Features"
98+
},
99+
{
100+
"type": "fix",
101+
"section": "Bug Fixes"
102+
},
103+
{
104+
"type": "chore",
105+
"hidden": true
106+
},
107+
{
108+
"type": "docs",
109+
"hidden": true
110+
},
111+
{
112+
"type": "style",
113+
"hidden": true
114+
},
115+
{
116+
"type": "refactor",
117+
"section": "Code Refactoring"
118+
},
119+
{
120+
"type": "perf",
121+
"section": "Performance Improvements"
122+
},
123+
{
124+
"type": "test",
125+
"hidden": true
126+
},
127+
{
128+
"type": "build",
129+
"hidden": true
130+
}
104131
]
105132
},
106133
"devDependencies": {

0 commit comments

Comments
 (0)