Skip to content

Commit

Permalink
Merge branch 'release/3.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
defagos committed Dec 11, 2020
2 parents 5d2ef5c + 39ac5a4 commit ca2fe93
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 2 deletions.
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -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_
5 changes: 3 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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(
Expand Down

0 comments on commit ca2fe93

Please sign in to comment.