Skip to content

Commit

Permalink
Merge pull request #112 from tranpl/may_20_2023_updates
Browse files Browse the repository at this point in the history
May 20 2023 updates
Version bump, 1.3.1
  • Loading branch information
cctrbic authored May 20, 2023
2 parents e0a633c + 2462bf9 commit 7eb58e5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions RedcapApi/Api/RedcapApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class RedcapApi : IRedcap
/// <example>
/// 4AAE216218B33700456A30898F2D6417
/// </example>
private static string _token;
private string _token = default!;

/// <summary>
/// Redcap API Uri
Expand All @@ -40,12 +40,12 @@ public class RedcapApi : IRedcap
/// <example>
/// https://localhost/redcap/api
/// </example>
private static Uri _uri;
private Uri _uri = default!;

/// <summary>
/// The version of redcap that the api is currently interacting with.
/// </summary>
public static string Version;
public string Version = default!;
/// <summary>
/// default constructor
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion RedcapApi/Models/Content.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.ComponentModel;

using System.ComponentModel.DataAnnotations;

namespace Redcap.Models
Expand Down
6 changes: 3 additions & 3 deletions RedcapApi/Redcap.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Serilog" Version="2.12.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="System.ComponentModel" Version="4.3.0" />
<PackageReference Include="System.ComponentModel.Annotations" Version="6.0.0-preview.4.21253.7" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion RedcapApiDemo/RedcapApiDemo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Serilog" Version="2.12.0" />
<PackageReference Include="Tynamix.ObjectFiller" Version="1.5.8" />
</ItemGroup>
Expand Down

0 comments on commit 7eb58e5

Please sign in to comment.