From 232f5525ddac712fc6f40bb2f0eecafb7ebf8f9f Mon Sep 17 00:00:00 2001 From: Ajesh Sen Thapa Date: Wed, 31 Jan 2024 20:21:50 +0545 Subject: [PATCH 1/2] chore: updated python package details --- setup.cfg | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/setup.cfg b/setup.cfg index 67abffc..0b6aeba 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,18 +1,37 @@ [metadata] name = commitlint version = 0.1.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 = From 22b7fb270254e4553b9392313ff7fcb381a5c19b Mon Sep 17 00:00:00 2001 From: Ajesh Sen Thapa Date: Wed, 31 Jan 2024 20:28:53 +0545 Subject: [PATCH 2/2] chore: version bump to 0.2.0 --- .github/SECURITY.md | 2 +- .github/workflows/test_action.yaml | 2 +- CHANGELOG.md | 2 +- README.md | 6 +++--- setup.cfg | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 7c137eb..c659946 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -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 diff --git a/.github/workflows/test_action.yaml b/.github/workflows/test_action.yaml index 0378a6c..ecc3d55 100644 --- a/.github/workflows/test_action.yaml +++ b/.github/workflows/test_action.yaml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d89f76..af5cab4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # CHANGELOG -## 0.1.0 +## 0.2.0 - Created commitlint CLI. - Created pre-commit configuration for `commit-msg` hook. diff --git a/README.md b/README.md index c2bdf99..6ef379b 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 ... ``` @@ -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. diff --git a/setup.cfg b/setup.cfg index 0b6aeba..f33379e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = commitlint -version = 0.1.0 +version = 0.2.0 license = MIT author = opensource-nepal author_email = aj3sshh@gmail.com, sugatbajracharya49@gmail.com