Skip to content

Commit 11f7b08

Browse files
authored
Merge pull request #20 from aj3sh/0.2.0
Package update and 0.2.0 version bump
2 parents 810471a + 22b7fb2 commit 11f7b08

File tree

5 files changed

+26
-7
lines changed

5 files changed

+26
-7
lines changed

.github/SECURITY.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ We provide security updates and support for the latest stable release of the 'co
88

99
| Version | Supported |
1010
| ------- | ------------------ |
11-
| 0.1.0 | :white_check_mark: |
11+
| 0.2.0 | :white_check_mark: |
1212

1313
## Reporting a Vulnerability
1414

.github/workflows/test_action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
- name: Run commitlint
1616
uses: ./ # Uses an action in the root directory
1717
# or use a released GitHub Action
18-
# uses: opensource-nepal/commitlint@0.1.0
18+
# uses: opensource-nepal/commitlint@0.2.0

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# CHANGELOG
22

3-
## 0.1.0
3+
## 0.2.0
44

55
- Created commitlint CLI.
66
- Created pre-commit configuration for `commit-msg` hook.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ commitlint is a tool designed to lint your commit messages according to the [Con
1919
...
2020

2121
- repo: https://github.com/opensource-nepal/commitlint
22-
rev: 0.1.0
22+
rev: 0.2.0
2323
hooks:
2424
- id: commitlint
2525

@@ -42,7 +42,7 @@ If you have any existing workflows, add the following steps:
4242
steps:
4343
...
4444
- name: Run commitlint
45-
uses: opensource-nepal/commitlint@0.1.0
45+
uses: opensource-nepal/commitlint@0.2.0
4646
...
4747
```
4848

@@ -64,7 +64,7 @@ jobs:
6464
- uses: actions/checkout@v4
6565

6666
- name: Run commitlint
67-
uses: opensource-nepal/commitlint@0.1.0
67+
uses: opensource-nepal/commitlint@0.2.0
6868
```
6969
7070
> **_NOTE:_** commitlint GitHub Actions will only be triggered by "push" or "pull_request" events.

setup.cfg

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,37 @@
11
[metadata]
22
name = commitlint
3-
version = 0.1.0
3+
version = 0.2.0
4+
license = MIT
5+
author = opensource-nepal
6+
47
description = commitlint is is a pre-commit hook designed to lint your commit messages according to the Conventional Commits standard.
58
long_description = file: README.md
69
long_description_content_type = text/markdown
10+
keywords =
11+
commitlint
12+
commit lint
13+
python commitlint
14+
conventional commit
15+
conventional commit message
16+
python commit
17+
github actions
18+
pre-commit
719
classifiers =
820
Programming Language :: Python :: 3 :: Only
921
Programming Language :: Python :: 3.8
1022

23+
url = https://github.com/opensource-nepal/commitlint
24+
project_urls =
25+
Source = https://github.com/opensource-nepal/commitlint
26+
Changelog = https://github.com/opensource-nepal/commitlint/blob/main/CHANGELOG.md
27+
1128
[options]
1229
packages = find:
1330

1431
[options.packages.find]
1532
where = src
33+
exclude =
34+
tests*
1635

1736
[options.entry_points]
1837
console_scripts =

0 commit comments

Comments
 (0)