File tree Expand file tree Collapse file tree 5 files changed +49
-2
lines changed Expand file tree Collapse file tree 5 files changed +49
-2
lines changed Original file line number Diff line number Diff line change 22
33All 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = "coderunner" ,
8- version = "0.7 " ,
8+ version = "0.8 " ,
99 license = "MIT" ,
1010 author = "Bhupesh Varshney" ,
1111
You can’t perform that action at this time.
0 commit comments