From c982713b03607650995d86c5216aa6952160a62f Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Tue, 28 Nov 2023 23:40:43 -0800 Subject: [PATCH 1/3] Make README intro more succinct (#54) --- README.md | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 270196a..9df9f24 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,15 @@ # changelist -Changelist helps you write better release notes by automating as much of the -process as possible. For example, see +A tool that automates release note generation. + +For example, see https://github.com/scientific-python/changelist/blob/main/CHANGELOG.md. **Features** -- Compile a list of pull requests, code authors and reviewers between any two - valid Git objects (refs). +- Compile a list of pull requests, code authors, and reviewers between + two given git commits. - Categorize pull requests into sections based on GitHub labels. -- Point it at any repository on GitHub. No need to clone or checkout a - repository locally, a Python package is all that's needed. - -We recommend to treat the generated document as a first draft to build -on and not as an already perfect documentation of the release. _This project is currently in its alpha stage and might be incomplete or change a lot!_ From 3cef99ec62e326f0d987ac7b4cdf4d236101a4c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:19:07 -0800 Subject: [PATCH 2/3] Bump actions/setup-python from 4 to 5 (#57) Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/lint.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 47de98c..df927f1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1d4eba3..c454680 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: with: fetch-depth: 0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 name: Install Python with: python-version: "3.11" From 92fb0edb7c53db2f95f42755540f54dd66477694 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 11:19:22 -0800 Subject: [PATCH 3/3] Bump pre-commit from 3.5.0 to 3.6.0 (#56) Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 3.5.0 to 3.6.0. - [Release notes](https://github.com/pre-commit/pre-commit/releases) - [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md) - [Commits](https://github.com/pre-commit/pre-commit/compare/v3.5.0...v3.6.0) --- updated-dependencies: - dependency-name: pre-commit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3625f6c..caef6bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,7 +32,7 @@ dependencies = [ changelist = "changelist.__main__:main" [project.optional-dependencies] -lint = ["pre-commit == 3.5.0"] +lint = ["pre-commit == 3.6.0"] [tool.ruff] line-length = 88