Skip to content

Commit b8f59d6

Browse files
Merge branch 'main' into async-swiftui-tests
2 parents 99b405f + db6e6ca commit b8f59d6

File tree

6 files changed

+100
-55
lines changed

6 files changed

+100
-55
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 33 deletions
This file was deleted.
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
name: Bug Report
2+
description: Create a report to help us improve
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: textarea
11+
id: what-happened
12+
attributes:
13+
label: What happened?
14+
description: Also tell us, what did you expect to happen?
15+
placeholder: Tell us what you see!
16+
validations:
17+
required: true
18+
- type: textarea
19+
id: version
20+
attributes:
21+
label: Version
22+
description: Please specify all relevant version information (SwiftCurrent version, Xcode Version, Swift Version, etc.)
23+
placeholder: |
24+
SwiftCurrent Version: v4.5.17
25+
Xcode Version: 13.2.1
26+
Swift Verison: 5.5
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: code
31+
attributes:
32+
label: Relevant code sample
33+
description: Please copy and paste any relevant code or examples. This will be automatically formatted into code, so no need for backticks.
34+
render: Swift
35+
validations:
36+
required: false
37+
- type: textarea
38+
id: logs
39+
attributes:
40+
label: Relevant log output
41+
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
42+
render: Shell
43+
validations:
44+
required: false
45+
- type: checkboxes
46+
id: terms
47+
attributes:
48+
label: Code of Conduct
49+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/wwt/SwiftCurrent/blob/main/.github/CODE_OF_CONDUCT.md)
50+
options:
51+
- label: I agree to follow this project's Code of Conduct
52+
required: true

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
name: Feature Request
3+
description: Suggest an idea for this project
4+
title: "[Feature]: "
5+
labels: ["enhancement"]
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this feature request!
11+
- type: textarea
12+
id: problem-statement
13+
attributes:
14+
label: What prompted this feature request?
15+
description: Is your feature request related to a problem? Please describe.
16+
placeholder: I get frustrated every time <x> happens, it interrupts my workflow
17+
validations:
18+
required: false
19+
- type: textarea
20+
id: desired-solution
21+
attributes:
22+
label: "Describe the solution you'd like"
23+
description: A clear and concise description of what you want to happen.
24+
placeholder: "If we implemented <y>, it would solve my <x> problem."
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: alternative-solution
29+
attributes:
30+
label: "Describe alternatives you've considered"
31+
description: "A clear and concise description of any alternative solutions or features you've considered."
32+
placeholder: We could also do <z> and it might solve for <w> and <x>.
33+
validations:
34+
required: false
35+
- type: checkboxes
36+
id: terms
37+
attributes:
38+
label: Code of Conduct
39+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/wwt/SwiftCurrent/blob/main/.github/CODE_OF_CONDUCT.md)
40+
options:
41+
- label: "I agree to follow this project's Code of Conduct"
42+
required: true
43+
validations:
44+
required: false
45+
---

.github/STYLEGUIDE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,8 @@ Each guide is broken into a few sections. Sections contain a list of guidelines.
825825

826826
// RIGHT
827827
@available(iOS 13, *)
828-
@resultBuilder @requires_stored_property_inits
828+
@resultBuilder
829+
@requires_stored_property_inits
829830
class WorkflowBuilder {
830831
// ...
831832
}

SwiftCurrent.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'SwiftCurrent'
3-
s.version = '4.5.17'
3+
s.version = '4.5.19'
44
s.summary = 'A library for complex workflows in Swift'
55
s.description = <<-DESC
66
SwiftCurrent is a library that lets you easily manage journeys through your Swift application.

0 commit comments

Comments
 (0)