Skip to content
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
14 changes: 7 additions & 7 deletions .config/cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ Full commit diff: [`{% if previous.version -%}
{%- endif %}...{{ last_commit }}`][{{ this_version }}]
{% if github.contributors | filter(attribute="is_first_time", value=true) | length != 0 %}
## New Contributors
{%- endif -%}
{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
- @{{ contributor.username }} made their first contribution
{%- if contributor.pr_number %} in \
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
{%- endif %}
{%- endfor %}
{% endif %}

{% for contributor in github.contributors | filter(attribute="is_first_time", value=true) %}
* @{{ contributor.username }} made their first contribution
{%- if contributor.pr_number %} in \
[#{{ contributor.pr_number }}]({{ self::remote_url() }}/pull/{{ contributor.pr_number }}) \
{%- endif %}
{%- endfor %}\n
"""
# template for the changelog footer
footer = """
Expand Down
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Full commit diff: [`v2.0.0-rc12...v2.0.0-rc13`][2.0.0-rc13]

## New Contributors
* @shenxianpeng made their first contribution in [#89](https://github.com/cpp-linter/cpp-linter-rs/pull/89)

- @shenxianpeng made their first contribution in [#89](https://github.com/cpp-linter/cpp-linter-rs/pull/89)

## [2.0.0-rc12] - 2024-12-12

### <!-- 1 --> 🚀 Added
Expand Down Expand Up @@ -255,6 +257,8 @@ Full commit diff: [`v2.0.0-rc1...v2.0.0-rc2`][2.0.0-rc2]
Full commit diff: [`2e25fec...v2.0.0-rc1`][2.0.0-rc1]

## New Contributors
* @2bndy5 made their first contribution
* @dependabot[bot] made their first contribution in [#34](https://github.com/cpp-linter/cpp-linter-rs/pull/34)

- @2bndy5 made their first contribution
- @dependabot[bot] made their first contribution in [#34](https://github.com/cpp-linter/cpp-linter-rs/pull/34)

<!-- generated by git-cliff -->
1 change: 1 addition & 0 deletions cspell.config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ words:
- sdist
- serde
- Shen
- shenxianpeng
- startswith
- superfences
- tada
Expand Down
8 changes: 4 additions & 4 deletions docs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ dynamic = ["version"]

[dependency-groups]
dev = [
"maturin==1.9.1",
"mypy==1.17.0",
"maturin==1.10.1",
"mypy==1.18.2",
"patchelf==0.17.2.2 ; sys_platform == 'linux'",
"ruff==0.14.3",
"ruff==0.14.4",
]
docs = [
"markdown-gfm-admonition==0.1.1",
"mkdocs==1.6.1",
"mkdocs-gen-files==0.5.0",
"mkdocs-include-markdown-plugin==7.2.0",
"mkdocs-material==9.6.22",
"mkdocs-material==9.7.0",
"pyyaml==6.0.3",
]

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,14 +52,14 @@ manifest-path = "bindings/python/Cargo.toml"

[dependency-groups]
dev = [
"maturin==1.9.1",
"mypy==1.17.0",
"maturin==1.10.1",
"mypy==1.18.2",
"patchelf==0.17.2.2 ; sys_platform == 'linux'",
"pre-commit>=4.2.0",
"ruff==0.14.3",
"ruff==0.14.4",
]
test = [
"meson==1.8.2",
"meson==1.9.1",
]

[tool.uv]
Expand Down
Loading
Loading