Skip to content

Commit 639e159

Browse files
authored
Merge pull request #1490 from cmu-delphi/bot/sync-main-dev
chore: sync main->dev
2 parents 6a3f683 + aa3dedb commit 639e159

File tree

10 files changed

+18
-10
lines changed

10 files changed

+18
-10
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.23
2+
current_version = 4.1.24
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.23
3+
version = 4.1.24
44

55
[options]
66
packages =

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.23'
18+
client_version <- '4.1.24'
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.23";
25+
const client_version = "4.1.24";
2626

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

src/client/delphi_epidata.py

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

1919
from aiohttp import ClientSession, TCPConnector, BasicAuth
2020

21-
__version__ = "4.1.23"
21+
__version__ = "4.1.24"
2222

2323
_HEADERS = {"user-agent": "delphi_epidata/" + __version__ + " (Python)"}
2424

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.23",
5+
"version": "4.1.24",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {

src/client/packaging/pypi/.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.23
2+
current_version = 4.1.24
33
commit = False
44
tag = False
55

src/client/packaging/pypi/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,21 @@
33
All notable future changes to the `delphi_epidata` python client will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/).
55

6-
## [4.1.24] - 2024-06-06
6+
## [4.1.24] - 2024-07-09
77

88
### Includes
99
- https://github.com/cmu-delphi/delphi-epidata/pull/1470
10+
- https://github.com/cmu-delphi/delphi-epidata/pull/1486
11+
- https://github.com/cmu-delphi/delphi-epidata/pull/1463
12+
- https://github.com/cmu-delphi/delphi-epidata/pull/1465
1013

1114
### Changed
1215
- Replaced `setup.py` with `pyproject.toml` for package metadata and build configuration.
16+
- Removed heavy `delphi_utils` dependency by changing debug output from structured logger to direct stderr printing.
17+
18+
### Fixed
19+
- Resolved previous version number typo in CHANGELOG.
20+
- Client version will now only incremented and released when there are structural/functional changes.
1321

1422
## [4.1.23] - 2024-05-31
1523

src/client/packaging/pypi/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ build-backend = "setuptools.build_meta" # If not defined, then legacy behavior c
1818

1919
[project]
2020
name = "delphi_epidata" # REQUIRED, is the only field that cannot be marked as dynamic.
21-
version = "4.1.23"
21+
version = "4.1.24"
2222
description = "A programmatic interface to Delphi's Epidata API."
2323
readme = "README.md"
2424
license = { file = "LICENSE" }

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.23"
10+
VERSION = "4.1.24"
1111

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

0 commit comments

Comments
 (0)