Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Package update and 0.2.0 version bump #20

Merged
merged 2 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = [email protected], [email protected]
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