Skip to content

Commit

Permalink
Showing 8 changed files with 8 additions and 7 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.15
current_version = 0.3.16
commit = False
tag = False

1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
itsdangerous<2.1
jinja2==3.0.3
werkzeug<2.1
Flask==1.1.2
SQLAlchemy==1.3.22
mysqlclient==2.0.2
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.15'
client_version <- '0.3.16'

# 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.15";
const client_version = "0.3.16";

// 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.15",
"version": "0.3.16",
"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.15'
__version__ = '0.3.16'
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.15",
version="0.3.16",
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.15"
VERSION = "0.3.16"

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

0 comments on commit e63f5bf

Please sign in to comment.