Skip to content

Commit

Permalink
Merge pull request #20 from aj3sh/0.2.0
Browse files Browse the repository at this point in the history
Package update and 0.2.0 version bump
  • Loading branch information
sugat009 authored Jan 31, 2024
2 parents 810471a + 22b7fb2 commit 11f7b08
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ We provide security updates and support for the latest stable release of the 'co

| Version | Supported |
| ------- | ------------------ |
| 0.1.0 | :white_check_mark: |
| 0.2.0 | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
- name: Run commitlint
uses: ./ # Uses an action in the root directory
# or use a released GitHub Action
# uses: opensource-nepal/commitlint@0.1.0
# uses: opensource-nepal/commitlint@0.2.0
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CHANGELOG

## 0.1.0
## 0.2.0

- Created commitlint CLI.
- Created pre-commit configuration for `commit-msg` hook.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ commitlint is a tool designed to lint your commit messages according to the [Con
...

- repo: https://github.com/opensource-nepal/commitlint
rev: 0.1.0
rev: 0.2.0
hooks:
- id: commitlint

Expand All @@ -42,7 +42,7 @@ If you have any existing workflows, add the following steps:
steps:
...
- name: Run commitlint
uses: opensource-nepal/commitlint@0.1.0
uses: opensource-nepal/commitlint@0.2.0
...
```

Expand All @@ -64,7 +64,7 @@ jobs:
- uses: actions/checkout@v4
- name: Run commitlint
uses: opensource-nepal/commitlint@0.1.0
uses: opensource-nepal/commitlint@0.2.0
```

> **_NOTE:_** commitlint GitHub Actions will only be triggered by "push" or "pull_request" events.
Expand Down
21 changes: 20 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,18 +1,37 @@
[metadata]
name = commitlint
version = 0.1.0
version = 0.2.0
license = MIT
author = opensource-nepal
author_email = aj3sshh@gmail.com, sugatbajracharya49@gmail.com
description = commitlint is is a pre-commit hook designed to lint your commit messages according to the Conventional Commits standard.
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
commitlint
commit lint
python commitlint
conventional commit
conventional commit message
python commit
github actions
pre-commit
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8

url = https://github.com/opensource-nepal/commitlint
project_urls =
Source = https://github.com/opensource-nepal/commitlint
Changelog = https://github.com/opensource-nepal/commitlint/blob/main/CHANGELOG.md

[options]
packages = find:

[options.packages.find]
where = src
exclude =
tests*

[options.entry_points]
console_scripts =
Expand Down

0 comments on commit 11f7b08

Please sign in to comment.