From cde88d3b2223bb473f5910ac2c80c033a7828a92 Mon Sep 17 00:00:00 2001 From: Michael Tran Date: Fri, 31 Mar 2023 16:35:20 -0400 Subject: [PATCH 1/4] Update .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 46f6363..4027287 100644 --- a/.gitignore +++ b/.gitignore @@ -261,3 +261,4 @@ __pycache__/ *.pyc RedcapApi/Properties RedcapApiDemo/Properties +RedcapApi/nuget.config \ No newline at end of file From ced4c58cf35c153ca6cdaab32bd0fb87c9131dcd Mon Sep 17 00:00:00 2001 From: Michael Tran Date: Fri, 31 Mar 2023 16:36:08 -0400 Subject: [PATCH 2/4] Delete nuget.config --- RedcapApi/nuget.config | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 RedcapApi/nuget.config diff --git a/RedcapApi/nuget.config b/RedcapApi/nuget.config deleted file mode 100644 index 899f6a0..0000000 --- a/RedcapApi/nuget.config +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file From e3596e98dbdcbd97f3ead23c54a00cd48edea375 Mon Sep 17 00:00:00 2001 From: Michael Tran Date: Fri, 19 May 2023 23:11:35 -0400 Subject: [PATCH 3/4] Update Redcap.csproj version bump --- RedcapApi/Redcap.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RedcapApi/Redcap.csproj b/RedcapApi/Redcap.csproj index 4e48641..9abb075 100644 --- a/RedcapApi/Redcap.csproj +++ b/RedcapApi/Redcap.csproj @@ -10,13 +10,13 @@ This library allows applications on the .NET platform to make http calls to REDCap instances. Redcap Api Library RedcapAPI - 1.3.1 - 1.3.1 + 1.3.2 + 1.3.2 redcap api library vcu Library en - 1.3.1 + 1.3.2 https://github.com/cctrbic/redcap-api/blob/master/LICENSE.md https://vortex.cctr.vcu.edu/images/ram_crest_160.png vcu.png From b3263e940d151d52ebf7a8b6ac0b08d902c62fb5 Mon Sep 17 00:00:00 2001 From: Michael Tran Date: Fri, 19 May 2023 23:12:24 -0400 Subject: [PATCH 4/4] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 215e4bf..164f483 100644 --- a/README.md +++ b/README.md @@ -80,21 +80,21 @@ __Install directly in Package Manager Console or Command Line Interface__ ```C# Package Manager -Install-Package RedcapAPI -Version 1.3.1 +Install-Package RedcapAPI -Version 1.3.2 ``` ```C# .NET CLI -dotnet add package RedcapAPI --version 1.3.1 +dotnet add package RedcapAPI --version 1.3.2 ``` ```C# Paket CLI -paket add RedcapAPI --version 1.3.1 +paket add RedcapAPI --version 1.3.2 ```