diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..73da697 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,55 @@ +> Please fill in the issue form below. The more detailed information your provide, the faster we will be able to fix your issue +> +> You might also want to remove these instruction in the process, or simply remove sections which might not be relevant in your case (e.g. if you have no code sample) + +### Issue type + +> Only keep the relevant line below + +Incorrect behavior + +Feature request + +Crash + +Help / documentation + +Other: _classification_ + +### Description of the problem + +> Enter a brief description of the problem. Include any meaningful logs or stack traces in code blocks as well + +``` +Stack trace or log information +``` + +### Environment information + +> The simulator is a valid device as well. If all versions or devices seem to be affected, simply enter 'Any' + +* Library version: _version_ +* iOS / tvOS version: _version_ +* Device: _model_ + +### Reproducibility + +> Only keep the relevant line below + +Always reproducible + +Difficult to reproduce + +### Code sample + +> The easiest way to understand your issue is with a simple code sample. If you can provide one, please add a link to it here + +[Code sample](https://github.com/username/repository) + +### Steps to reproduce + +> Provide step-by-step instructions about how to reliably reproduce the issue (or if not possible, with a good probability) + +1. _Step 1_ +1. _Step 2_ +1. _Step 3_ \ No newline at end of file diff --git a/Package.swift b/Package.swift index bdd0fae..cc298fb 100644 --- a/Package.swift +++ b/Package.swift @@ -3,7 +3,7 @@ import PackageDescription struct ProjectSettings { - static let marketingVersion: String = "3.0.0" + static let marketingVersion: String = "3.0.1" } let package = Package( @@ -23,7 +23,8 @@ let package = Package( .target( name: "SRGDiagnostics", cSettings: [ - .define("MARKETING_VERSION", to: "\"\(ProjectSettings.marketingVersion)\"") + .define("MARKETING_VERSION", to: "\"\(ProjectSettings.marketingVersion)\""), + .define("NS_BLOCK_ASSERTIONS", to: "1", .when(configuration: .release)) ] ), .testTarget(