From 494c5ce67b7e8178fe5a1817a65418cc85396b17 Mon Sep 17 00:00:00 2001 From: Martin O'Reilly Date: Fri, 14 Sep 2018 22:53:01 +0100 Subject: [PATCH 1/2] Add PyCharm .idea folder to .gitignore --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 3c51611..03e93f0 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,9 @@ data/ # Ignore directory info from local macOS .DS_store +# Ignore .idea folder from PyCharm IDE +.idea/ + #### Default python gitignore as initiated by GitHub # Byte-compiled / optimized / DLL files From 552c7cac5fdf1822f79ee5203241482d5f283b4e Mon Sep 17 00:00:00 2001 From: Martin O'Reilly Date: Fri, 14 Sep 2018 22:54:21 +0100 Subject: [PATCH 2/2] Unescape single quote in .zenodo description field. Single quotes should not be escaped in JSON and were causing a parse error on Zenodo. --- .zenodo.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zenodo.json b/.zenodo.json index bfffee1..23df070 100644 --- a/.zenodo.json +++ b/.zenodo.json @@ -1,5 +1,5 @@ { - "description": "

This version of the The Code and Data Citation Counter project was built at the Software Sustainability Institute\'s Collaborations Workshop Hack Day in March 2018 and extends work started at the second Springer Nature Hack Day in November 2017.

\n

The goal is to interrogate the published literature for key terms relating to software and data citations (eg: zenodo or github) and monitor how these occurances change over time.

", + "description": "

This version of the The Code and Data Citation Counter project was built at the Software Sustainability Institute's Collaborations Workshop Hack Day in March 2018 and extends work started at the second Springer Nature Hack Day in November 2017.

\n

The goal is to interrogate the published literature for key terms relating to software and data citations (eg: zenodo or github) and monitor how these occurances change over time.

", "license": "MIT", "title": "The Code and Data Citation Counter", "version": "0.2",