Skip to content

Commit dc81e6f

Browse files
committed
chore: update dependencies and add issue templates
1 parent d3d2026 commit dc81e6f

6 files changed

Lines changed: 103 additions & 8 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Report a bug to help us improve TOONS
4+
labels: bug
5+
---
6+
7+
## Bug Summary
8+
A clear and concise description of the problem.
9+
10+
## Steps to Reproduce
11+
1. ...
12+
2. ...
13+
3. ...
14+
15+
## Expected Behavior
16+
What you expected to happen.
17+
18+
## Actual Behavior
19+
What actually happened.
20+
21+
## Code Example
22+
```python
23+
# Minimal reproducible example
24+
```
25+
26+
## Environment
27+
- TOONS version:
28+
- Python version:
29+
- OS:
30+
31+
## Additional Context
32+
Add any other context about the problem here.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Documentation improvement
3+
about: Improve or clarify TOONS documentation
4+
labels: documentation
5+
---
6+
7+
## Documentation Area
8+
Which doc needs improvement? (e.g., README, api-reference, examples)
9+
10+
## Issue Description
11+
What is unclear, missing, or incorrect?
12+
13+
## Suggested Changes
14+
Provide the proposed wording, outline, or examples.
15+
16+
## Additional Context
17+
Any links or references that help.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for TOONS
4+
labels: enhancement
5+
---
6+
7+
## Feature Summary
8+
A clear and concise description of the proposed feature.
9+
10+
## Use Case
11+
Explain why this feature is needed and who benefits.
12+
13+
## Proposed Solution
14+
Describe how this should work.
15+
16+
## Example Usage
17+
```python
18+
# Example usage of the proposed feature
19+
```
20+
21+
## Alternatives Considered
22+
Describe any alternatives you've considered.
23+
24+
## Additional Context
25+
Add any other context or screenshots here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## Description
2+
Brief description of the changes.
3+
4+
## Type of Change
5+
- [ ] Bug fix (non-breaking change which fixes an issue)
6+
- [ ] New feature (non-breaking change which adds functionality)
7+
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
8+
- [ ] Documentation update
9+
10+
## Related Issues
11+
Fixes #<issue_number> (if applicable)
12+
13+
## Checklist
14+
- [ ] Tests pass locally (`pytest`)
15+
- [ ] New tests added for new functionality
16+
- [ ] Code follows project style guidelines
17+
- [ ] Comments added for complex code
18+
- [ ] Documentation updated (if applicable)
19+
- [ ] No new warnings generated
20+
- [ ] Conventional commit format used
21+
- [ ] Pre-commit ran on all modified files

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "toons"
3-
version = "0.5.2"
3+
version = "0.5.3"
44
edition = "2024"
55

66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

0 commit comments

Comments
 (0)