Skip to content

Commit 9952f2f

Browse files
committedJan 19, 2020
ready for 0.7 release
1 parent fbeea20 commit 9952f2f

File tree

7 files changed

+19
-13
lines changed

7 files changed

+19
-13
lines changed
 

‎.github/ISSUE_TEMPLATE/----bug-report.md

+3-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: "\U0001F41B Bug report"
33
about: Create a report to help us improve
44
title: ''
5-
labels: ''
5+
labels: 'bug'
66
assignees: ''
77

88
---
@@ -25,14 +25,8 @@ If applicable, add screenshots to help explain your problem.
2525

2626
**Desktop (please complete the following information):**
2727
- OS: [e.g. iOS]
28-
- Browser [e.g. chrome, safari]
29-
- Version [e.g. 22]
30-
31-
**Smartphone (please complete the following information):**
32-
- Device: [e.g. iPhone6]
33-
- OS: [e.g. iOS8.1]
34-
- Browser [e.g. stock browser, safari]
35-
- Version [e.g. 22]
28+
- Python Version [e.g 3.6]
29+
- CodeRunner version [e.g 0.4]
3630

3731
**Additional context**
3832
Add any other context about the problem here.

‎.github/ISSUE_TEMPLATE/---feature-request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: "\U0001F680 Feature request"
33
about: Suggest an idea for this project
44
title: ''
5-
labels: ''
5+
labels: 'enhancement'
66
assignees: ''
77

88
---

‎.github/ISSUE_TEMPLATE/---say-thank-you.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: "\U0001F49F Say thank you"
33
about: Just say thanks if you liked CodeRunner
44
title: ''
5-
labels: ''
5+
labels: 'thanks'
66
assignees: ''
77

88
---

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.7] - Jan 19, 2020
6+
7+
### Changed
8+
- `code()` class now ignores `output`. i.e you can just provide source code & language to run a program.
9+
10+
511
## [0.6] - Jan 5, 2020
612

713
### Added

‎README.md

+3
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ r = coderunner.code(source_code, language, expected_output, standard_input)
4343
# otherwise
4444
r = coderunner.code(source_code, language, expected_output)
4545

46+
# you can also ignore both fields
47+
r = coderunner.code(source_code, language)
48+
4649
# Use path=False if not using file paths
4750
r = coderunner.code("Hello, World", language, "Hello, World", path=False)
4851

‎docs/usage.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ coderunner provides the following class constructors
77
* **Parameters(type)** :
88
- source : The Source Code
99
- lang : The Programming Language
10-
- output : Expected Output of the Program
10+
- output : Expected Output of the Program (optional).
1111
- inp : Standard Input to the program (optional).
1212
- path : specify mode of input. Set this to `False` if you are not using file paths (optional)
1313

@@ -27,6 +27,9 @@ r = code(source_code, language, expected_output, standard_input)
2727
# otherwise
2828
r = code(source_code, language, expected_output)
2929

30+
# you can also ignore both fields
31+
r = code(source_code, language)
32+
3033
# Use path=False if not using file paths
3134
r = code("Hello, World", language, "Hello, World", path=False)
3235
```

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="coderunner",
8-
version="0.6",
8+
version="0.7",
99
license="MIT",
1010
author="Bhupesh Varshney",
1111
author_email="varshneybhupesh@gmail.com",

0 commit comments

Comments
 (0)
Please sign in to comment.