Skip to content

Commit

Permalink
Merge pull request #920 from cmu-delphi/release/delphi-epidata-0.3.20
Browse files Browse the repository at this point in the history
Release Delphi Epidata 0.3.20
krivard authored May 31, 2022
2 parents 68276a2 + fbe247f commit 9fa62f2
Showing 9 changed files with 117 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.19
current_version = 0.3.20
commit = False
tag = False

153 changes: 109 additions & 44 deletions docs/api/covidcast-signals/fb-survey.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/symptom-survey/contingency-tables.md
Original file line number Diff line number Diff line change
@@ -173,7 +173,7 @@ for download, and specifies the survey questions on which they are based. See
the <a href="coding.html">survey instrument codebook</a> for the full text of
all questions.</div>

The files contain [weighted estimates](../api/covidcast-signals/fb-survey.md#survey-weighting)
The files contain [weighted estimates](../api/covidcast-signals/fb-survey.md#survey-weighting-and-estimation)
of the percent of respondents who fulfill one or several criteria. Estimates are
broken out by state, age, gender, race, ethnicity, occupation, and health
conditions.
2 changes: 1 addition & 1 deletion src/client/delphi_epidata.R
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ Epidata <- (function() {
# API base url
BASE_URL <- 'https://delphi.cmu.edu/epidata/api.php'

client_version <- '0.3.19'
client_version <- '0.3.20'

# Helper function to cast values and/or ranges to strings
.listitem <- function(value) {
2 changes: 1 addition & 1 deletion src/client/delphi_epidata.js
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
}
})(this, function (exports, fetchImpl, jQuery) {
const BASE_URL = "https://delphi.cmu.edu/epidata/";
const client_version = "0.3.19";
const client_version = "0.3.20";

// Helper function to cast values and/or ranges to strings
function _listitem(value) {
2 changes: 1 addition & 1 deletion src/client/packaging/npm/package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "delphi_epidata",
"description": "Delphi Epidata API Client",
"authors": "Delphi Group",
"version": "0.3.19",
"version": "0.3.20",
"license": "MIT",
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
"bugs": {
2 changes: 1 addition & 1 deletion src/client/packaging/pypi/delphi_epidata/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .delphi_epidata import Epidata

name = 'delphi_epidata'
__version__ = '0.3.19'
__version__ = '0.3.20'
2 changes: 1 addition & 1 deletion src/client/packaging/pypi/setup.py
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@

setuptools.setup(
name="delphi_epidata",
version="0.3.19",
version="0.3.20",
author="David Farrow",
author_email="dfarrow0@gmail.com",
description="A programmatic interface to Delphi's Epidata API.",
2 changes: 1 addition & 1 deletion src/server/_config.py
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@

load_dotenv()

VERSION = "0.3.19"
VERSION = "0.3.20"

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

0 comments on commit 9fa62f2

Please sign in to comment.