Skip to content

Commit d8b4663

Browse files
Merge pull request #1 from marcelblijleven/feature/add-automatic-changelog
Feature/add automatic changelog
2 parents 4466aeb + c6cd9fd commit d8b4663

File tree

3 files changed

+118
-0
lines changed

3 files changed

+118
-0
lines changed

.versionrc

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
{
2+
"bumpFiles": [
3+
{
4+
"filename": "VERSION",
5+
"type": "plain-text"
6+
}
7+
],
8+
"types": [
9+
{
10+
"section": "✨ Features",
11+
"type": "feat"
12+
},
13+
{
14+
"section": "⭐️ Solutions",
15+
"type": "solution"
16+
},
17+
{
18+
"section": "🐛 Bug Fixes",
19+
"type": "fix"
20+
},
21+
{
22+
"hidden": false,
23+
"section": "🚦Tests",
24+
"type": "test"
25+
},
26+
{
27+
"hidden": false,
28+
"section": "📦 Build System",
29+
"type": "build"
30+
},
31+
{
32+
"hidden": false,
33+
"type": "ci",
34+
"section": "🛠 CI"
35+
},
36+
{
37+
"hidden": true,
38+
"type": "chore",
39+
"section": "🏗 Chores"
40+
},
41+
{
42+
"hidden": false,
43+
"type": "imp",
44+
"section": "🛠 Improvements"
45+
},
46+
{
47+
"hidden": false,
48+
"type": "docs",
49+
"section": "📄 Documentation"
50+
},
51+
{
52+
"hidden": false,
53+
"type": "perf",
54+
"section": "⚡️ Performance"
55+
},
56+
{
57+
"hidden": false,
58+
"type": "security",
59+
"section": "🔒 Security"
60+
},
61+
{
62+
"hidden": false,
63+
"type": "style",
64+
"section": "💅 Style"
65+
},
66+
{
67+
"hidden": false,
68+
"type": "refactor",
69+
"section": "🔨 Refactor"
70+
},
71+
{
72+
"hidden": false,
73+
"type": "revert",
74+
"section": "♻️ Revert"
75+
},
76+
{
77+
"hidden": false,
78+
"type": "hotfix",
79+
"section": "🔥 Hotfix"
80+
}
81+
]
82+
}

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Changelog
2+
3+
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.
4+
5+
## 1.0.0 (2021-11-18)
6+
7+
8+
### 🐛 Bug Fixes
9+
10+
* **ci:** fix incorrect indentation ([42aa59b](https://github.com/marcelblijleven/adventofcode/commit/42aa59ba6fba7efd98276f2be7e91a5ace8c0b17))
11+
* don't commit when nothing to commit ([0af5ccc](https://github.com/marcelblijleven/adventofcode/commit/0af5ccc2a9666ee64aee182af86e6d7d1ebd6a76))
12+
13+
14+
### 🚦Tests
15+
16+
* add input helper functions tests ([359ff51](https://github.com/marcelblijleven/adventofcode/commit/359ff519841d399cfbe7e70c57f8f148d0ac3f2d))
17+
18+
19+
### 📄 Documentation
20+
21+
* extend info in README.md ([3986795](https://github.com/marcelblijleven/adventofcode/commit/398679509f7d09ba1a9cd966cc3f9b2f2c03550d))
22+
* update README ([d9f90ba](https://github.com/marcelblijleven/adventofcode/commit/d9f90bae7f834b581877563896506480136defd2))
23+
24+
25+
### 🛠 CI
26+
27+
* add tests.yaml ([7e3b262](https://github.com/marcelblijleven/adventofcode/commit/7e3b262a586dbec57bc50a88aa707c2b59497ccd))
28+
* add update readme script ([0f83cfd](https://github.com/marcelblijleven/adventofcode/commit/0f83cfd50c32dc9c4b4fd51779ccd6426edece61))
29+
* rename update readme script ([c17e6b4](https://github.com/marcelblijleven/adventofcode/commit/c17e6b41f471ea4f77d9e981c75f1a5e282b351a))
30+
31+
32+
### ✨ Features
33+
34+
* add input helper functions ([f759d11](https://github.com/marcelblijleven/adventofcode/commit/f759d11bc6fc837475f8ad924074ecee9ab4e121))
35+
* automatically update amount of stars collected ([bbcd9a3](https://github.com/marcelblijleven/adventofcode/commit/bbcd9a3a612d77aebec156aca1d8b510e6f23de8))

VERSION.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.0.0

0 commit comments

Comments
 (0)