Skip to content

Commit

Permalink
chore: release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TommasoAmici committed Jan 5, 2022
1 parent ba4585d commit dc27c7f
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 6 deletions.
28 changes: 23 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,32 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.0.0] - 2022-01-05

### Build

## [0.1.0] - 2021-06-23
- _(test)_ run jest with --ci flag

### Added
### Fixed

- First release of plugin
- _(deps)_ update dependency html-webpack-plugin to v5.5.0
- _(deps)_ update dependency webpack to v5.60.0
- _(deps)_ update dependency css-loader to v6.5.0
- _(deps)_ update dependency webpack to v5.61.0
- _(deps)_ update dependency css-loader to v6.5.1
- _(deps)_ update dependency mini-css-extract-plugin to v2.4.4
- _(deps)_ update dependency webpack to v5.62.1
- _(deps)_ update dependency webpack to v5.62.2
- _(deps)_ update dependency webpack to v5.63.0
- _(deps)_ update dependency webpack to v5.64.0
- _(deps)_ update dependency webpack to v5.64.1
- _(deps)_ update dependency mini-css-extract-plugin to v2.4.5
- _(deps)_ update dependency webpack to v5.64.2
- _(deps)_ update dependency webpack to v5.64.3
- _(deps)_ update dependency webpack to v5.64.4
- _(deps)_ update dependency webpack to v5.65.0
- _(deps)_ update dependency esbuild-loader to v2.17.0
- _(deps)_ update dependency esbuild-loader to v2.18.0
57 changes: 57 additions & 0 deletions cliff.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# configuration file for git-cliff (0.1.0)
[changelog]
# changelog header
header = """
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).\n
"""
# template for the changelog body
# https://tera.netlify.app/docs/#introduction
body = """
{% if version %}\
## [{{ version | replace(from="v", to="") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
## [unreleased]
{% endif %}\
{% for group, commits in commits | group_by(attribute="group") %}
### {{ group | upper_first }}
{% for commit in commits %}
- {% if commit.scope -%}*({{commit.scope}})*{% endif %} {{ commit.message }}\
{% endfor %}
{% endfor %}\n
"""
# remove the leading and trailing whitespaces from the template
trim = true
# changelog footer
footer = ""

[git]
# allow only conventional commits
# https://www.conventionalcommits.org
conventional_commits = true
# regex for parsing and grouping commits
commit_parsers = [
{ message = "^chore", skip = true },
{ message = "^refactor", skip = true },
{ message = "^style", skip = true },
{ message = "^ci", group = "Build" },
{ message = "^build", group = "Build" },
{ message = "^feat", group = "Added" },
{ message = "^fix", group = "Fixed" },
{ message = "^perf", group = "Fixed" },
{ message = "^revert", group = "Removed" },
{ message = "^test", group = "Fixed" },
{ message = "^.*: add", group = "Added" },
{ message = "^.*: support", group = "Added" },
{ message = "^.*: remove", group = "Removed" },
{ message = "^.*: delete", group = "Removed" },
{ message = "^.*: fix", group = "Fixed" },
]
# filter out the commits that are not matched by commit parsers
filter_commits = true
# glob pattern for matching git tags
tag_pattern = "v[0-9]*"
# regex for skipping tags
skip_tags = "v0.1.0-beta.1"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "html-webpack-plugin-django",
"version": "0.1.1",
"version": "1.0.0",
"description": "",
"keywords": [
"webpack",
Expand Down

0 comments on commit dc27c7f

Please sign in to comment.