Skip to content

Commit d49e92c

Browse files
authored
Merge pull request #880 from cmu-delphi/release/delphi-epidata-0.3.15
Release Delphi Epidata 0.3.15
2 parents d39ff99 + e1e41fb commit d49e92c

File tree

14 files changed

+529
-523
lines changed

14 files changed

+529
-523
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.3.14
2+
current_version = 0.3.15
33
commit = False
44
tag = False
55

docs/api/covidcast-signals/quidel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ June 14th and subsequently revised on June 16th.
144144

145145
### Limitations
146146

147-
This data source is based on data provided to us by a lab testing company. They can report on a portion of United States COVID-19 Antigen tests, but not all of them, and so this source only represents those tests known to them. Their coverage may vary across the United States.
147+
This data source is based on data provided to us by a lab testing company. They can report on a portion of United States COVID-19 Antigen tests, but not all of them, and so this source only represents those tests known to them. Their coverage may vary across the United States. The coverage of the signals for some age groups (e.g. age 0-4 and age 65+) are extremely limited at HRR and MSA level, and can even be limited at state level on weekends.
148148

149149
### Missingness
150150

docs/symptom-survey/codebook.csv

Lines changed: 509 additions & 507 deletions
Large diffs are not rendered by default.

docs/symptom-survey/coding.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,9 @@ Files:
10061006
* Item C17b asks respondents if they received a flu vaccination since July 2021.
10071007
This is an updated version of item C17a (waves 8-10) and C17 (waves 5-7),
10081008
which descended from item C2 (waves 1-3).
1009+
* Item V17 asks respondents when they received their most recent COVID-19
1010+
vaccination. Due to programming issues, the launch of this question was
1011+
delayed. The question was deployed on February 27, 2022.
10091012

10101013
### Changed Items
10111014

48.7 KB
Binary file not shown.
4.71 KB
Binary file not shown.

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
itsdangerous<2.1
2+
jinja2==3.0.3
23
Flask==1.1.2
34
SQLAlchemy==1.3.22
45
mysqlclient==2.0.2

src/client/delphi_epidata.R

Lines changed: 1 addition & 1 deletion
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.14'
18+
client_version <- '0.3.15'
1919

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

src/client/delphi_epidata.js

Lines changed: 1 addition & 1 deletion
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.14";
25+
const client_version = "0.3.15";
2626

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

src/client/packaging/npm/package-lock.json

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/packaging/npm/package.json

Lines changed: 1 addition & 1 deletion
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.14",
5+
"version": "0.3.15",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {
Lines changed: 1 addition & 1 deletion
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.14'
4+
__version__ = '0.3.15'

src/client/packaging/pypi/setup.py

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

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

src/server/_config.py

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

66
load_dotenv()
77

8-
VERSION = "0.3.14"
8+
VERSION = "0.3.15"
99

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

0 commit comments

Comments
 (0)