Skip to content

Commit

Permalink
Merge pull request #18 from sovren/feature/data-center-url
Browse files Browse the repository at this point in the history
update datacenter urls
  • Loading branch information
sovren-zebner authored Dec 11, 2020
2 parents df19259 + 1b82243 commit 74d6a75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Sovren.SDK/DataCenter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ public class DataCenter
/// <summary>
/// Represents the Sovren US datacenter. You can find out which datacenter your account is in at <see href="https://portal.sovren.com/"/>
/// </summary>
public static DataCenter US = new DataCenter("https://staging-rest.resumeparsing.com", "v10", true);
public static DataCenter US = new DataCenter("https://rest.resumeparsing.com", "v10", true);

/// <summary>
/// Represents the Sovren EU datacenter. You can find out which datacenter your account is in at <see href="https://portal.sovren.com/"/>
/// </summary>
public static DataCenter EU = new DataCenter("https://staging-rest.resumeparsing.com", "v10", true);
public static DataCenter EU = new DataCenter("https://eu-rest.resumeparsing.com", "v10", true);

internal string Root { get; private set; }
internal string Version { get; private set; }
Expand Down
2 changes: 1 addition & 1 deletion src/Sovren.SDK/Sovren.SDK.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Copyright>Copyright © 2020 Sovren Group, Inc. All rights reserved.</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/sovren/sovren-dotnet</PackageProjectUrl>
<Version>0.1.22-beta</Version>
<Version>1.0.0</Version>
<PackageIcon>images\icon.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/sovren/sovren-dotnet/master/src/Sovren.SDK/icon.png</PackageIconUrl>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
Expand Down

0 comments on commit 74d6a75

Please sign in to comment.