Skip to content

Commit

Permalink
Updating version and changelog for v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dpoirier committed Dec 1, 2017
1 parent 90631df commit a62b574
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = "1.6.1"
release = "1.7.0"

# The short X.Y version.
version = "1.6"
version = "1.7"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
27 changes: 27 additions & 0 deletions docs/releases/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,33 @@ Tracpro's version is incremented upon each merge to master according to our `Dep
We recommend reviewing the release notes and code diffs before upgrading
between versions.

v1.7.0 (released 2017-12-01)
----------------------------

Code diff: https://github.com/rapidpro/tracpro/compare/v1.6.1...v1.7.0

* Add an optional org setting, how_to_handle_sameday_responses, with
two choices that control how to handle multiple responses to the
same numeric question by the same contact in the same day.

* use_last - charts display data as if the last response by
a contact to the same question in the same day was
the only response that day. This is the default value, and
was always the behavior in previous releases.

* sum - charts display data by summing all responses by the
same contact to the same numeric question in the same day,
as if they only answered once and their answer was that sum.
This would be a change from previous behavior, and will require
changing this in the org settings.
(Non-numeric questions' responses continue the previous behavior,
as described above in *use_last*.)

* When downloading responses, always include all responses in the CSV
file. Previously, the responses downloaded were consistent with what
the charts were showing, meaning if a contact responded multiple times
to the same numeric question on the same day, only their last response
was included.

v1.6.1 (released 2017-06-05)
----------------------------
Expand Down
2 changes: 1 addition & 1 deletion tracpro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


# NOTE: Version must be updated in docs/conf.py as well.
VERSION = (1, 6, 2, "dev")
VERSION = (1, 7, 0, "final")


def get_version(version):
Expand Down

0 comments on commit a62b574

Please sign in to comment.