Skip to content

Commit eda8c4a

Browse files
committed
Bumping version, adding editor config file and a contribution section to the readme.
1 parent c13dc59 commit eda8c4a

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
13+
[*.py]
14+
indent_size = 4
15+
16+
[*.{html,js,rb,scss,xml,less,css}]
17+
indent_size = 2

README.rst

+14-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ but in short::
2121

2222
pip install zerobin
2323
zerobin
24-
24+
2525
For now, 0bin targets Python 2.7 only. Python 3 supports is planned.
2626

2727
How it works
@@ -103,3 +103,16 @@ What does 0bin not implement?
103103
.. _node.js: http://nodejs.org/
104104
.. _is not worth it: http://stackoverflow.com/questions/201705/how-many-random-elements-before-md5-produces-collisions
105105
.. _WTF licence: http://en.wikipedia.org/wiki/WTFPL
106+
107+
Contributing
108+
=============
109+
110+
Please fork the project, clone your repository and add the original repo as an upstream remote to keep yours in sync.
111+
112+
For small fixes (typo and such), you can work on master.
113+
114+
For features, you should create a dedicated branch.
115+
116+
We don't require you to rebase/merge, ordinary merging is alright.
117+
118+
Once it's ready, just request a PR.

zerobin/default_settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
######## NOT SETTINGS, JUST BOILER PLATE ##############
77
import os
88

9-
VERSION = '0.3'
9+
VERSION = '0.4'
1010
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
1111
LIBS_DIR = os.path.join(os.path.dirname(ROOT_DIR), 'libs')
1212

0 commit comments

Comments
 (0)