Skip to content

Commit 1082c4c

Browse files
authored
Merge pull request #1374 from cmu-delphi/release/delphi-epidata-4.1.16
Release Delphi Epidata 4.1.16
2 parents dc505f9 + 12ac4d8 commit 1082c4c

File tree

10 files changed

+19
-9
lines changed

10 files changed

+19
-9
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 = 4.1.15
2+
current_version = 4.1.16
33
commit = False
44
tag = False
55

dev/local/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = Delphi Development
3-
version = 4.1.15
3+
version = 4.1.16
44

55
[options]
66
packages =

docs/symptom-survey/publications.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,16 @@ Pandemic"](https://www.pnas.org/topic/548) in *PNAS*:
2626

2727
Research publications using the survey data include:
2828

29+
- H. Bui, S. Ekşioğlu, R. Proano, and S. N. Pinkley (2024). [An Analysis of
30+
COVID-19 Vaccine Hesitancy in the U.S.](https://doi.org/10.1080/24725854.2024.2301966).
31+
*IISE Transactions*.
32+
- de Vries, M., Kim, J.Y. & Han, H. (2023). [The unequal landscape of civic
33+
opportunity in America](https://doi.org/10.1038/s41562-023-01743-1). *Nature
34+
Human Behavior*.
35+
- E. Tuzhilina, T. J. Hastie, D. J. McDonald, J. K. Tay & R. Tibshirani (2023).
36+
[Smooth multi-period forecasting with application to prediction of COVID-19
37+
cases](https://doi.org/10.1080/10618600.2023.2285337). *Journal of Computational
38+
and Graphical Statistics*.
2939
- W. Dempsey (2023). [Addressing selection bias and measurement error in
3040
COVID-19 case count data using auxiliary information](https://doi.org/10.1214/23-AOAS1744).
3141
*Annals of Applied Statistics* 17 (4), 2903-2923.

requirements.api.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ delphi_utils==0.3.15
22
epiweeks==2.1.2
33
Flask==2.2.5
44
Flask-Limiter==3.3.0
5-
jinja2==3.0.3
5+
jinja2==3.1.3
66
more_itertools==8.4.0
77
mysqlclient==2.1.1
88
orjson==3.4.7

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 <- getOption('epidata.url', default = 'https://api.delphi.cmu.edu/epidata/')
1717

18-
client_version <- '4.1.15'
18+
client_version <- '4.1.16'
1919

2020
auth <- getOption("epidata.auth", default = NA)
2121

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://api.delphi.cmu.edu/epidata/";
25-
const client_version = "4.1.15";
25+
const client_version = "4.1.16";
2626

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

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": "4.1.15",
5+
"version": "4.1.16",
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__ = "4.1.15"
4+
__version__ = "4.1.16"

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="4.1.15",
8+
version="4.1.16",
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
@@ -7,7 +7,7 @@
77

88
load_dotenv()
99

10-
VERSION = "4.1.15"
10+
VERSION = "4.1.16"
1111

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

0 commit comments

Comments
 (0)