Skip to content

Commit

Permalink
ready for 0.7 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Bhupesh-V committed Jan 19, 2020
1 parent fbeea20 commit 9952f2f
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 13 deletions.
12 changes: 3 additions & 9 deletions .github/ISSUE_TEMPLATE/----bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: "\U0001F41B Bug report"
about: Create a report to help us improve
title: ''
labels: ''
labels: 'bug'
assignees: ''

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

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]
- Python Version [e.g 3.6]
- CodeRunner version [e.g 0.4]

**Additional context**
Add any other context about the problem here.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/---feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: "\U0001F680 Feature request"
about: Suggest an idea for this project
title: ''
labels: ''
labels: 'enhancement'
assignees: ''

---
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/---say-thank-you.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: "\U0001F49F Say thank you"
about: Just say thanks if you liked CodeRunner
title: ''
labels: ''
labels: 'thanks'
assignees: ''

---
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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

## [0.7] - Jan 19, 2020

### Changed
- `code()` class now ignores `output`. i.e you can just provide source code & language to run a program.


## [0.6] - Jan 5, 2020

### Added
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ r = coderunner.code(source_code, language, expected_output, standard_input)
# otherwise
r = coderunner.code(source_code, language, expected_output)

# you can also ignore both fields
r = coderunner.code(source_code, language)

# Use path=False if not using file paths
r = coderunner.code("Hello, World", language, "Hello, World", path=False)

Expand Down
5 changes: 4 additions & 1 deletion docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ coderunner provides the following class constructors
* **Parameters(type)** :
- source : The Source Code
- lang : The Programming Language
- output : Expected Output of the Program
- output : Expected Output of the Program (optional).
- inp : Standard Input to the program (optional).
- path : specify mode of input. Set this to `False` if you are not using file paths (optional)

Expand All @@ -27,6 +27,9 @@ r = code(source_code, language, expected_output, standard_input)
# otherwise
r = code(source_code, language, expected_output)

# you can also ignore both fields
r = code(source_code, language)

# Use path=False if not using file paths
r = code("Hello, World", language, "Hello, World", path=False)
```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="coderunner",
version="0.6",
version="0.7",
license="MIT",
author="Bhupesh Varshney",
author_email="varshneybhupesh@gmail.com",
Expand Down

0 comments on commit 9952f2f

Please sign in to comment.