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 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 0.8] - May 27, 2020
6
+
7
+ ### Fix
8
+ - Fixed bug where compiling a Java program resulted in Compilation Error.
9
+
10
+
5
11
## [ 0.7] - Jan 19, 2020
6
12
7
13
### Changed
Original file line number Diff line number Diff line change 48
48
"stack_limit" : "64000" ,
49
49
"max_processes_and_or_threads" : "30" ,
50
50
"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 " ,
52
52
"max_file_size" : "1024" ,
53
53
}
54
54
Original file line number Diff line number Diff line change 2
2
3
3
4
4
5
+ ## [ 0.8] - May 27, 2020
6
+
7
+ ### Fix
8
+ - Fixed bug where compiling a Java program resulted in Compilation Error.
9
+
10
+
5
11
## [ 0.6] - Jan 5, 2020
6
12
7
13
### 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 5
5
6
6
setuptools .setup (
7
7
name = "coderunner" ,
8
- version = "0.7 " ,
8
+ version = "0.8 " ,
9
9
license = "MIT" ,
10
10
author = "Bhupesh Varshney" ,
11
11
author_email = "varshneybhupesh@gmail.com" ,
You can’t perform that action at this time.
0 commit comments