Skip to content

Commit 3a20301

Browse files
authored
Merge pull request #2 from jimbrig/develop
Add Changelog.md
2 parents caec304 + d9e85cf commit 3a20301

File tree

2 files changed

+108
-0
lines changed

2 files changed

+108
-0
lines changed

CHANGELOG.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
## [unreleased]
5+
6+
### Bug Fixes
7+
8+
- Fix completion script root
9+
- Fixed issues with edit functions mixups
10+
11+
### Configuration
12+
13+
- Update attributes
14+
- Ignore keeper
15+
- Add vscode workspace
16+
- Removed 'touch' alias for 'set-filetime' from psx package
17+
- Add cliff.toml git-cliff configuration file for Changelog (#1)
18+
19+
### Documentation
20+
21+
- Add Changelog.md (resolves #1)
22+
23+
### Features
24+
25+
- Add encrypted config.json
26+
- Add experimental functions
27+
- Add extract-icon
28+
- Functions
29+
- Migrate to new profile dir
30+
- All new completion scripts
31+
- Extract-icon
32+
- Loaders
33+
- Update VSCode profile
34+
- Add hardware troubleshooting function sysutil
35+
- Add PSDefaultParams to profile.ps1
36+
- Add Troubleshooting Functions
37+
- New Get-IP function
38+
- New Get-AdminRights.ps1 function
39+
- Add Test-WiFi function
40+
- Add new 'Reset-Network' function.
41+
- Add hardlinked PowerShell-History log to profile dir
42+
43+
### Cleanup
44+
45+
- Archive old functions
46+
- Remove old files
47+
- Cleanup actual profiles
48+
49+
### Update
50+
51+
- Modules
52+
53+
Generated by Git-Cliff

cliff.toml

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# configuration file for git-cliff (0.1.0)
2+
3+
[changelog]
4+
# changelog header
5+
header = """
6+
# Changelog
7+
All notable changes to this project will be documented in this file.\n
8+
"""
9+
# template for the changelog body
10+
# https://tera.netlify.app/docs/#introduction
11+
body = """
12+
{% if version %}\
13+
## [{{ version | replace(from="v", to="") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
14+
{% else %}\
15+
## [unreleased]
16+
{% endif %}\
17+
{% for group, commits in commits | group_by(attribute="group") %}
18+
### {{ group | upper_first }}
19+
{% for commit in commits %}
20+
- {{ commit.message | upper_first }}\
21+
{% endfor %}
22+
{% endfor %}\n
23+
"""
24+
# remove the leading and trailing whitespaces from the template
25+
trim = true
26+
# changelog footer
27+
footer = """
28+
Generated by Git-Cliff
29+
"""
30+
31+
[git]
32+
# allow only conventional commits
33+
# https://www.conventionalcommits.org
34+
conventional_commits = true
35+
# regex for parsing and grouping commits
36+
commit_parsers = [
37+
{ message = "^feat*", group = "Features"},
38+
{ message = "^fix*", group = "Bug Fixes"},
39+
{ message = "^bug*", group = "Bug Fixes"},
40+
{ message = "^doc*", group = "Documentation"},
41+
{ message = "^perf*", group = "Performance"},
42+
{ message = "^refactor*", group = "Refactor"},
43+
{ message = "^config*", group = "Configuration"},
44+
{ message = "^style*", group = "Styling"},
45+
{ message = "^test*", group = "Testing"},
46+
{ message = "^chore\\(release\\): prepare for*", skip = true},
47+
{ message = "^chore*", group = "Miscellaneous Tasks"},
48+
{ body = ".*security", group = "Security"}
49+
]
50+
# filter out the commits that are not matched by commit parsers
51+
filter_commits = false
52+
# glob pattern for matching git tags
53+
tag_pattern = "v[0-9]*"
54+
# regex for skipping tags
55+
skip_tags = "v0.1.0-beta.1"

0 commit comments

Comments
 (0)