Skip to content

Commit

Permalink
[NEW] Music Album Creator v1.4.0
Browse files Browse the repository at this point in the history
Music Album Creator v1.4.0 Release
  • Loading branch information
boromir674 authored Apr 3, 2023
2 parents 36d9b6d + 9868353 commit b6fc8b2
Show file tree
Hide file tree
Showing 67 changed files with 7,521 additions and 1,904 deletions.
6 changes: 0 additions & 6 deletions .coveragerc
Original file line number Diff line number Diff line change
@@ -1,13 +1,7 @@
[paths]
source =
src
*/site-packages

[run]
branch = true
source =
music_album_creation
tests
parallel = true

[report]
Expand Down
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: Bug report
about: Create a report to help us improve
title: "[BUG]"
labels: bug
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Install the *music-album-creation* package with *python3 -m pip install music-album-creation*
2. Run the **cli** as: *generate-python ...*
please provided the arguments supplied to the cli
3. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. Linux Mint, iOS, Windows]
- Version [e.g. 1.2.0]
run: *generate-python --version*
- Python Interpreter
run: *generate-python --version*


**Additional context**
Add any other context about the problem here.
For example, what input values were supplied to the *generate-python*
cli (ie paste contents of your *config file*)
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: "[FEATURE]"
labels: enhancement
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/issue-inquiry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Issue Inquiry
about: Make an inquiry about an "issue" which is not a 'bug' nor a 'feature request'
title: "[OTHER ISSUE]"
labels: question
assignees: ''

---

**TODO: Title Goes Here**

**Do you have a question related to the *music-album-creator* package?**
Please submit your question :)

Examples:
- Why is *A* designed the way it is designed?
- How does *A* accomplish whatever it accomplishes?
20 changes: 20 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Pull Request Labeling Rules based on changed files

# Add 'ci' label to any change within the '.github' dir
ci:
- any: ['.github/*', '.github/**/*']


# Add 'business_logic' label to any change within the 'src/music_album_creation' dir
business_logic:
- any: ['src/music_album_creation/*', 'src/music_album_creation/**/*']


# Add 'docs' label to any change within the 'docs' dir
docs:
- any: ['docs/*', 'docs/**/*']


# Add 'test' label to any change within the 'tests' dir
test:
- any: ['tests/*', 'tests/**/*']
Loading

0 comments on commit b6fc8b2

Please sign in to comment.