Skip to content

Commit 9fa62f2

Browse files
authored
Merge pull request #920 from cmu-delphi/release/delphi-epidata-0.3.20
Release Delphi Epidata 0.3.20
2 parents 68276a2 + fbe247f commit 9fa62f2

File tree

9 files changed

+117
-52
lines changed

9 files changed

+117
-52
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.19
2+
current_version = 0.3.20
33
commit = False
44
tag = False
55

docs/api/covidcast-signals/fb-survey.md

+109-44
Large diffs are not rendered by default.

docs/symptom-survey/contingency-tables.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ for download, and specifies the survey questions on which they are based. See
173173
the <a href="coding.html">survey instrument codebook</a> for the full text of
174174
all questions.</div>
175175

176-
The files contain [weighted estimates](../api/covidcast-signals/fb-survey.md#survey-weighting)
176+
The files contain [weighted estimates](../api/covidcast-signals/fb-survey.md#survey-weighting-and-estimation)
177177
of the percent of respondents who fulfill one or several criteria. Estimates are
178178
broken out by state, age, gender, race, ethnicity, occupation, and health
179179
conditions.

src/client/delphi_epidata.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Epidata <- (function() {
1515
# API base url
1616
BASE_URL <- 'https://delphi.cmu.edu/epidata/api.php'
1717

18-
client_version <- '0.3.19'
18+
client_version <- '0.3.20'
1919

2020
# Helper function to cast values and/or ranges to strings
2121
.listitem <- function(value) {

src/client/delphi_epidata.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
})(this, function (exports, fetchImpl, jQuery) {
2424
const BASE_URL = "https://delphi.cmu.edu/epidata/";
25-
const client_version = "0.3.19";
25+
const client_version = "0.3.20";
2626

2727
// Helper function to cast values and/or ranges to strings
2828
function _listitem(value) {

src/client/packaging/npm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "delphi_epidata",
33
"description": "Delphi Epidata API Client",
44
"authors": "Delphi Group",
5-
"version": "0.3.19",
5+
"version": "0.3.20",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .delphi_epidata import Epidata
22

33
name = 'delphi_epidata'
4-
__version__ = '0.3.19'
4+
__version__ = '0.3.20'

src/client/packaging/pypi/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="delphi_epidata",
8-
version="0.3.19",
8+
version="0.3.20",
99
author="David Farrow",
1010
author_email="[email protected]",
1111
description="A programmatic interface to Delphi's Epidata API.",

src/server/_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
load_dotenv()
77

8-
VERSION = "0.3.19"
8+
VERSION = "0.3.20"
99

1010
MAX_RESULTS = int(10e6)
1111
MAX_COMPATIBILITY_RESULTS = int(3650)

0 commit comments

Comments
 (0)