8000 increment version number · pyexcel-webwares/django-excel@865cfe0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 865cfe0

Browse files
committed
increment version number
1 parent 6f786cb commit 865cfe0

File tree

4 files changed

+38
-20
lines changed

4 files changed

+38
-20
lines changed

README.rst

Lines changed: 34 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -246,19 +246,39 @@ Then install relevant development requirements:
246246
#. pip install -r requirements.txt
247247
#. pip install -r tests/requirements.txt
248248

249+
Once you have finished your changes, please provide test case(s), relevant documentation
250+
and update CHANGELOG.rst.
249251

250-
In order to update test environment, and documentation, additional steps are
251-
required:
252+
.. note::
253+
254+
As to rnd_requirements.txt, usually, it is created when a dependent
255+
library is not released. Once the dependecy is installed
256+
(will be released), the future
257+
version of the dependency in the requirements.txt will be valid.
258+
259+
260+
How to test your contribution
261+
------------------------------
262+
263+
Although `nose` and `doctest` are both used in code testing, it is adviable that unit tests are put in tests. `doctest` is incorporated only to make sure the code examples in documentation remain valid across different development releases.
264+
265+
On Linux/Unix systems, please launch your tests like this::
266+
267+
$ make
268+
269+
On Windows systems, please issue this command::
270+
271+
> test.bat
272+
273+
How to update test environment and update documentation
274+
---------------------------------------------------------
275+
276+
Additional steps are required:
252277

253278
#. pip install moban
254279
#. git clone https://github.com/pyexcel/pyexcel-commons.git commons
255280
#. make your changes in `.moban.d` directory, then issue command `moban`
256281

257-
What is rnd_requirements.txt
258-
-------------------------------
259-
260-
Usually, it is created when a dependent library is not released. Once the dependecy is installed(will be released), the future version of the dependency in the requirements.txt will be valid.
261-
262282
What is pyexcel-commons
263283
---------------------------------
264284

@@ -269,18 +289,15 @@ What is .moban.d
269289

270290
`.moban.d` stores the specific meta data for the library.
271291

272-
How to test your contribution
273-
------------------------------
274-
275-
Although `nose` and `doctest` are both used in code testing, it is adviable that unit tests are put in tests. `doctest` is incorporated only to make sure the code examples in documentation remain valid across different development releases.
276-
277-
On Linux/Unix systems, please launch your tests like this::
292+
Acceptance criteria
293+
-------------------
278294

279-
$ make
295+
#. Has Test cases written
296+
#. Has all code lines tested
297+
#. Passes all Travis CI builds
298+
#. Has fair amount of documentation if your change is complex
299+
#. Agree on NEW BSD License for your contribution
280300

281-
On Windows systems, please issue this command::
282-
283-
> test.bat
284301

285302

286303
License

django_excel.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
overrides: "pyexcel.yaml"
22
name: "django-excel"
3-
version: 0.0.6
3+
version: 0.0.7
4+
current_version: 0.0.7
45
release: 0.0.6
56
webframework: Django
67
dependencies:

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
project = u'django-excel'
2424
copyright = u'2015-2017 Onni Software Ltd.'
2525
version = '0.0.6'
26-
release = '0.0.6'
26+
release = '0.0.7'
2727
exclude_patterns = []
2828
pygments_style = 'sphinx'
2929
import os # noqa

setup.py

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

1111
NAME = 'django-excel'
1212
AUTHOR = 'C.W.'
13-
VERSION = '0.0.6'
13+
VERSION = '0.0.7'
1414
EMAIL = 'wangc_2011@hotmail.com'
1515
LICENSE = 'New BSD'
1616
DESCRIPTION = (

0 commit comments

Comments
 (0)
0