Skip to content

Commit 5694b64

Browse files
Merge branch 'master' into develop
2 parents fd78f00 + 6eebef7 commit 5694b64

File tree

5 files changed

+114
-2
lines changed

5 files changed

+114
-2
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Bug Report
2+
description: File a bug report.
3+
labels: ['bug']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this bug report!
9+
- type: textarea
10+
id: bug-description
11+
attributes:
12+
label: What happened?
13+
description: Please describe the bug.
14+
placeholder: Description of the bug.
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: steps-to-reproduce
19+
attributes:
20+
label: What are the steps to reproduce?
21+
description: Please describe the steps to reproduce the bug.
22+
placeholder: |
23+
Step 1: ...
24+
Step 2: ...
25+
Step 3: ...
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: expected-behavior
30+
attributes:
31+
label: What is the expected behavior?
32+
description: Please describe the behavior you expect.
33+
placeholder: I expect that...
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: error-thrown
38+
attributes:
39+
label: What is the error thrown?
40+
description: Please provide the exact error thrown.
41+
placeholder: "Web3Error.invalidData("Exact error message")"
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: source-path
46+
attributes:
47+
label: What's the stack trace said?
48+
description: Please provide the exact source path.
49+
placeholder: "Sources/Core/Transaction/CodableTransaction.swift:129 func recoverPublicKey()"
50+
validations:
51+
required: true
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Documentation Request
2+
description: Suggest documentation you would like added
3+
labels: ['documentation']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this documentation request!
9+
- type: textarea
10+
id: area
11+
attributes:
12+
label: What area of the framework would you like to have improved the documentation for?
13+
description: Please be very specific and link to the relevant page in the documentation if possible.
14+
placeholder: I would like the documentation for...
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: reason
19+
attributes:
20+
label: Why is the current documentation for this area not sufficient?
21+
description: A clear and concise description of why this documentation needs to be improved.
22+
placeholder: The documentation needs to be improved because...
23+
validations:
24+
required: true
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
labels: ['feature']
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thanks for taking the time to fill out this feature request!
9+
- type: textarea
10+
id: problem
11+
attributes:
12+
label: Is your feature request related to a problem?
13+
description: A clear and concise description of what the problem is.
14+
placeholder: Yes, the problem is that...
15+
validations:
16+
required: true
17+
- type: textarea
18+
id: solution
19+
attributes:
20+
label: What solution would you like?
21+
description: A clear and concise description of what you want to happen.
22+
placeholder: I would like that...
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: alternatives
27+
attributes:
28+
label: What alternatives have you considered?
29+
description: A clear and concise description of any alternative solutions or features you've considered.
30+
placeholder: I have considered to...
31+
validations:
32+
required: true
33+
- type: textarea
34+
id: context
35+
attributes:
36+
label: Any additional context?
37+
description: Add any other context or screenshots about the feature request here.

Web3Core.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Pod::Spec.new do |spec|
22
spec.compiler_flags = '-DCOCOAPODS'
33

44
spec.name = 'Web3Core'
5-
spec.version = '3.0.4'
5+
spec.version = '3.0.5'
66
spec.module_name = 'Core'
77
spec.ios.deployment_target = "13.0"
88
spec.osx.deployment_target = "10.15"

web3swift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
WEB3CORE_VERSION ||= '3.0.4'
1+
WEB3CORE_VERSION ||= '3.0.5'
22

33
Pod::Spec.new do |spec|
44
spec.name = 'web3swift'

0 commit comments

Comments
 (0)