Skip to content

Commit 7ea5b2e

Browse files
committed
bump to 0.8
1 parent 3c32033 commit 7ea5b2e

File tree

5 files changed

+49
-2
lines changed

5 files changed

+49
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.8] - May 27, 2020
6+
7+
### Fix
8+
- Fixed bug where compiling a Java program resulted in Compilation Error.
9+
10+
511
## [0.7] - Jan 19, 2020
612

713
### Changed

coderunner/coderunner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"stack_limit": "64000",
4949
"max_processes_and_or_threads": "30",
5050
"enable_per_process_and_thread_time_limit": "false",
51-
"enable_per_process_and_thread_memory_limit": "true",
51+
"enable_per_process_and_thread_memory_limit": "false",
5252
"max_file_size": "1024",
5353
}
5454

docs/changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33

44

5+
## [0.8] - May 27, 2020
6+
7+
### Fix
8+
- Fixed bug where compiling a Java program resulted in Compilation Error.
9+
10+
511
## [0.6] - Jan 5, 2020
612

713
### Added

ppp

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
#!/bin/bash
2+
3+
# Shell Script to Publish a Python Package
4+
find_setup_py(){
5+
setupfile="setup.py"
6+
if [ -f "$setupfile" ]
7+
then
8+
return
9+
else
10+
echo -e "\nERROR : $setupfile Not Found."
11+
exit
12+
fi
13+
}
14+
15+
remove_old_dist(){
16+
echo -e "\033[92;1mRemoving Old Distributions ... \n\033[0m"
17+
rm -r dist/
18+
rm -r build/
19+
ls | grep "egg-info$" | xargs rm -r
20+
}
21+
22+
create_new_dist(){
23+
echo -e "\033[92;1mGenerating new Distributions ... \n\033[0m"
24+
python3 setup.py sdist bdist_wheel
25+
}
26+
27+
run_twine(){
28+
echo -e "\033[92;1m\nUploading Package ... \n\033[0m"
29+
twine upload dist/*
30+
}
31+
32+
find_setup_py
33+
remove_old_dist
34+
create_new_dist
35+
run_twine

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

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

0 commit comments

Comments
 (0)