Skip to content

Commit 7c666fe

Browse files
authored
Merge pull request #1139 from cmu-delphi/release/delphi-epidata-0.4.11
Release Delphi Epidata 0.4.11
2 parents 0384f39 + c2a65ca commit 7c666fe

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

.bumpversion.cfg

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

dev/local/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = Delphi Development
3-
version = 0.4.10
3+
version = 0.4.11
44

55
[options]
66
packages =

requirements.api.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
delphi_utils==0.3.6
1+
delphi_utils==0.3.15
22
epiweeks==2.1.2
33
Flask==2.2.2
44
itsdangerous<2.1

requirements.dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ aiohttp==3.8.3
22
black>=20.8b1
33
bump2version==1.0.1
44
covidcast==0.1.5
5-
delphi_utils==0.3.6
5+
delphi_utils==0.3.15
66
docker==6.0.1
77
dropbox==11.36.0
88
freezegun==1.2.2

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.4.10'
18+
client_version <- '0.4.11'
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.4.10";
25+
const client_version = "0.4.11";
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.4.10",
5+
"version": "0.4.11",
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.4.10'
4+
__version__ = '0.4.11'

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.4.10",
8+
version="0.4.11",
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
@@ -4,7 +4,7 @@
44

55
load_dotenv()
66

7-
VERSION = "0.4.10"
7+
VERSION = "0.4.11"
88

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

0 commit comments

Comments
 (0)