Skip to content

Commit 15e4987

Browse files
committed
Merge latest dev changes
2 parents 832b25c + 9f55c81 commit 15e4987

File tree

9 files changed

+20
-20
lines changed

9 files changed

+20
-20
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.1.9
2+
current_version = 4.1.10
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 = 4.1.9
3+
version = 4.1.10
44

55
[options]
66
packages =

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

18-
client_version <- '4.1.9'
18+
client_version <- '4.1.10'
1919

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

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://api.delphi.cmu.edu/epidata/";
25-
const client_version = "4.1.9";
25+
const client_version = "4.1.10";
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": "4.1.9",
5+
"version": "4.1.10",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {
+9-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
1-
# Change Log
2-
All notable changes to this client will be documented in this file.
3-
4-
The format is based on [Keep a Changelog](http://keepachangelog.com/)
5-
and this project adheres to [Semantic Versioning](http://semver.org/).
6-
1+
# Changelog
2+
3+
All notable future changes to the `delphi_epidata` python client will be documented in this file.
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/).
5+
76
## [4.2.0] - 2023-09-27
8-
9-
### Added
107

118
### Changed
129

1310
- Modify the signatures for several methods: endpoint no longer needs to be specified in the params dict under the "source" key, but becomes a mandatory parameter for the method:
14-
- `_request(params)``_request(endpoint, params={})`
15-
- `_request_with_retry(params)``_request_with_retry(endpoint, params={})`
1611
- `async_epidata(param_list, batch_size=50)``async_epidata(endpoint, param_list, batch_size=50)`
1712

18-
### Fixed
19-
13+
## [4.1.10] - 2023-09-28
14+
15+
### Added
16+
- Established this Changelog
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.9"
4+
__version__ = "4.1.10"

src/client/packaging/pypi/setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@
55

66
setuptools.setup(
77
name="delphi_epidata",
8-
version="4.1.9",
8+
version="4.1.10",
99
author="David Farrow",
1010
author_email="[email protected]",
1111
description="A programmatic interface to Delphi's Epidata API.",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
1414
url="https://github.com/cmu-delphi/delphi-epidata",
15+
project_urls={
16+
"Changelog": "https://github.com/cmu-delphi/delphi-epidata/blob/dev/src/client/packaging/pypi/CHANGELOG.md",
17+
},
1518
packages=setuptools.find_packages(),
1619
install_requires=["aiohttp", "requests>=2.7.0", "tenacity"],
1720
classifiers=[

src/server/_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
load_dotenv()
99

10-
VERSION = "4.1.9"
10+
VERSION = "4.1.10"
1111

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

0 commit comments

Comments
 (0)