Skip to content

Commit ffb7e74

Browse files
committed
Merge remote-tracking branch 'origin/main' into 173-refactor-levels
2 parents cda4556 + 4b5805c commit ffb7e74

File tree

7 files changed

+887
-316
lines changed

7 files changed

+887
-316
lines changed
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
2+
---
3+
name: Bug report
4+
about: Create a report to help us improve
5+
title: ''
6+
labels: bug
7+
assignees: ''
8+
9+
---
10+
11+
# Bug Report
12+
13+
**Describe the bug**
14+
<!-- A clear and concise description of the issue. -->
15+
16+
---
17+
18+
## To Reproduce
19+
<!-- Provide the YAML configuration and the exact CLI command that reproduces the issue. -->
20+
21+
### YAML configuration
22+
<!-- Paste the YAML file or the smallest excerpt that reproduces the issue.
23+
Remove unrelated fields to make it minimal. -->
24+
```yaml
25+
# Paste the YAML snippet here
26+
```
27+
28+
### CLI command used
29+
<!-- Write the exact command used, for example: -->
30+
```bash
31+
# Paste the CLI command here
32+
```
33+
34+
### Actual output
35+
<!-- Paste the output, logs, or error messages here -->
36+
```bash
37+
# Paste the output, logs, or error messages here
38+
```
39+
40+
### Expected output
41+
<!-- Describe what you expected to see instead -->
42+
43+
---
44+
45+
## Environment and Versions
46+
47+
- Operating System:
48+
- CodeEntropy Version:
49+
- Python Version:
50+
- Package list:
51+
- If using conda, run: `conda list > packages.txt` and paste the contents here.
52+
53+
``` bash
54+
# Paste packages.txt here
55+
```
56+
57+
- If using venv/pip, run: `pip list > packages.txt` and paste the contents here.
58+
59+
``` bash
60+
# Paste packages.txt here
61+
```
62+
63+
---
64+
65+
## Screenshots or Logs
66+
67+
Attach any relevant screenshots, logs, or stack traces.
68+
69+
---
70+
71+
## Additional Context
72+
73+
Include anything else that might help reproduce or understand the bug, such as changes from a previously working version.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
2+
---
3+
name: Feature request
4+
about: Suggest an idea for this project
5+
title: ''
6+
labels: ''
7+
assignees: ''
8+
---
9+
10+
# Feature Request
11+
12+
## Problem / Motivation
13+
<!-- Describe the problem you want to solve or the motivation for this feature. -->
14+
15+
## Proposed Solution
16+
<!-- Describe the feature you would like to see implemented. Include examples if applicable. -->
17+
18+
## Alternatives Considered
19+
- <!-- Alternative 1 -->
20+
- <!-- Alternative 2 -->
21+
22+
## Expected Impact
23+
<!-- How this feature would affect the codebase or workflow -->
24+
- <!-- Impact 1 -->
25+
- <!-- Impact 2 -->
26+
27+
## Additional Context
28+
<!-- Add any other context, screenshots, or references for the feature request here. -->
29+
- <!-- Further context -->

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,5 +76,5 @@ keywords:
7676
- biomolecular simulations
7777
- protein flexibility
7878
license: MIT
79-
version: 1.0.6
80-
date-released: '2025-11-27'
79+
version: 1.0.7
80+
date-released: '2026-01-09'

CodeEntropy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
and statistical mechanics.
99
"""
1010

11-
__version__ = "1.0.6"
11+
__version__ = "1.0.7"

0 commit comments

Comments
 (0)