Skip to content

Commit

Permalink
Updated to v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bshoshany committed May 31, 2022
1 parent 737c603 commit 9d43f5d
Show file tree
Hide file tree
Showing 13 changed files with 2,009 additions and 2,041 deletions.
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: Found a bug? Report it here.
title: "[BUG]"
labels: bug
assignees: bshoshany

---

**Describe the bug**

A clear and concise description of what the bug is.

**Minimal working example**

A short but complete program that can be compiled to reproduce the error. Paste the program between the two code fences. If it's too long or requires multiple files, attach the file(s) instead.

```cpp
```

**Behavior**

What behavior did you expect to get? What actually happened? If the code failed to compile, please include the full output of the compiler.

**System information**

* CPU model, architecture, # of cores and threads:
* Operating system:
* Name and version of C++ compiler:
* Full command used for compiling, including all compiler flags:
* Thread pool library version:

(Please note that only the latest version of the thread pool library is supported.)

**Additional information**

Include any additional information here.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/failed-tests.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
name: Failed tests
about: The provided automated tests failed on your system? Report it here.
title: "[TEST]"
labels: bug
assignees: bshoshany

---

**System information**

* CPU model, architecture, # of cores and threads:
* Operating system:
* Name and version of C++ compiler:
* Full command used for compiling, including all compiler flags:
* Thread pool library version:

(Please note that only the latest version of the thread pool library is supported.)

**Log file**

Please attach the log file generated by the automated test program to this issue.

**Additional information**

Include any additional information here.
23 changes: 23 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
name: Feature request
about: Want a new feature? Suggest it here.
title: "[REQ]"
labels: enhancement
assignees: bshoshany

---

**Describe the new feature**

A clear and concise description of the feature you want.

**Code example**

An example of code that utilizes the suggested feature. Paste or write it between the two code fences.

```cpp
```

**Additional information**

Include any additional information here.
20 changes: 20 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
**Pull request policy (please read)**

> Contributions are always welcome. However, I release my projects in cumulative updates after editing and testing them locally on my system, so my policy is not to accept any pull requests. If you open a pull request, and I decide to incorporate your suggestion into the project, I will first modify your code to comply with the project's coding conventions (formatting, syntax, naming, comments, programming practices, etc.), and perform some tests to ensure that the change doesn't break anything. I will then merge it into the next release of the project, possibly together with some other changes. The new release will also include a note in `CHANGELOG.md` with a link to your pull request, and modifications to the documentation in `README.md` as needed.
**Describe the changes**

What does your pull request fix or add to the library?

**Testing**

Have you tested the new code using the provided automated test program and/or performed any other tests to ensure that it works correctly? If so, please provide information about the test system(s):

* CPU model, architecture, # of cores and threads:
* Operating system:
* Name and version of C++ compiler:
* Full command used for compiling, including all compiler flags:

**Additional information**

Include any additional information here.
Loading

0 comments on commit 9d43f5d

Please sign in to comment.