Skip to content

Commit 690baea

Browse files
authored
Merge pull request #636 from cmu-delphi/release/delphi-epidata-0.2.1
Release Delphi Epidata 0.2.1
2 parents 63e406f + d5d2792 commit 690baea

File tree

8 files changed

+16
-7
lines changed

8 files changed

+16
-7
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 = 0.2.0
2+
current_version = 0.2.1
33
commit = False
44
tag = False
55

docs/symptom-survey/server-access.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,12 @@ prefer.)
6060
3. You should then have access to the CSV files of individual responses from CMU
6161
Delphi COVID Survey of Facebook users. See our [response files documentation](survey-files.md)
6262
for information on how these files are formatted.
63+
64+
### Cyberduuck connection problems
65+
66+
Data users have reported receiving an error when utilizing newer versions of the
67+
CyberDuck SFTP client (version 7.0 and higher). A "broken pipe" or disconnection
68+
error is received when attempting to download larger files, such as the monthly
69+
data files. If you experience this problem, we found that Cyberduck version 6.9
70+
works as expected; this version can be downloaded
71+
[here](https://update.cyberduck.io/Cyberduck-6.9.4.30164.zip).

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 <- 'https://delphi.cmu.edu/epidata/api.php'
1717

18-
client_version <- '0.2.0'
18+
client_version <- '0.2.1'
1919

2020
# Helper function to cast values and/or ranges to strings
2121
.listitem <- function(value) {

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://delphi.cmu.edu/epidata/";
25-
const client_version = "0.2.0";
25+
const client_version = "0.2.1";
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": "0.2.0",
5+
"version": "0.2.1",
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__ = '0.2.0'
4+
__version__ = '0.2.1'

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="0.2.0",
8+
version="0.2.1",
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
@@ -5,7 +5,7 @@
55

66
load_dotenv()
77

8-
VERSION = "0.2.0"
8+
VERSION = "0.2.1"
99

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

0 commit comments

Comments
 (0)