Skip to content

Commit

Permalink
Release version 0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ukanga authored Feb 19, 2019
2 parents 13d9bce + acdb9de commit e97ac9f
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 11 deletions.
7 changes: 4 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
steps:
- checkout
- restore_cache:
key: requirements-{{ checksum "requirements.pip" }}
key: requirements-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.pip" }}
- run:
# Install dependencies with --user to enable easier caching
name: Install dependencies
Expand All @@ -24,9 +24,10 @@ jobs:
/home/circleci/.local/bin/nosetests
/home/circleci/.local/bin/nosetests --tests pyxform/tests_v1/
- save_cache:
key: requirements-{{ checksum "requirements.pip" }}
key: requirements-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "requirements.pip" }}
paths:
- /home/circleci/.local/lib
- /home/circleci/.local/bin
py-3.6:
<<: *build-template
docker:
Expand All @@ -51,4 +52,4 @@ workflows:
- py-3.6
- py-3.5
- py-3.4
- py-2.7
- py-2.7
17 changes: 17 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
Pyxform Changelog

v0.13.0, 2019 02 19
-- Add Validate v1.11.0 with JavaRosa v2.13.0
Issue #264, https://github.com/XLSForm/pyxform/issues/264
[yanokwa]

-- Add audit location support
Issue #253, https://github.com/XLSForm/pyxform/issues/253
[yanokwa]

-- Enable CircleCI support, remove Travis
Issue #262, https://github.com/XLSForm/pyxform/issues/262
[yanokwa]

-- Support Excel workbook with macro XLSForm files i.e .xlsm
Issue #252, https://github.com/XLSForm/pyxform/issues/252
[bmarika]

v0.12.2, 2019 01 06
-- Correct environment marker in requirements.pip
[ukanga]
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
=============
pyxform v0.12
=============
===============
pyxform v0.13.X
===============

|circleci| |appveyor|

Expand Down
2 changes: 1 addition & 1 deletion pyxform/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Collect easy.
"""

__version__ = '0.12.2'
__version__ = '0.13.0'

from pyxform.builder import (SurveyElementBuilder, create_survey, # noqa
create_survey_element_from_dict,
Expand Down
12 changes: 9 additions & 3 deletions requirements.pip
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
#
# This file is autogenerated by pip-compile
# To update, run:
#
# pip-compile --output-file requirements.pip requirements.in
#
argparse==1.4.0 # via unittest2
formencode==1.3.1
functools32==3.2.3.post2; python_version < "3.2"
linecache2==1.0.0 # via traceback2
nose==1.3.7
six==1.11.0 # via unittest2
six==1.12.0 # via unittest2
traceback2==1.4.0 # via unittest2
unicodecsv==0.14.1
unittest2==1.1.0
xlrd==1.1.0
functools32==3.2.3.post2 ; python_version < "3.2"
xlrd==1.2.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='pyxform',
version='0.12.2',
version='0.13.0',
author='github.com/xlsform',
author_email='[email protected]',
packages=find_packages(),
Expand Down

0 comments on commit e97ac9f

Please sign in to comment.