Skip to content
This repository has been archived by the owner on Jun 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #54 from goshippo/master
Browse files Browse the repository at this point in the history
Fixes api_endpoint to remove extra slash
  • Loading branch information
ssong-shippo authored Jul 30, 2020
2 parents 35320f5 + 969f490 commit c981ebe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Shippo/APIResource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

namespace Shippo {
public class APIResource {
public static readonly string api_endpoint = "https://api.goshippo.com/";
public static readonly string api_endpoint = "https://api.goshippo.com";
static readonly string user_agent = "Shippo/v1 CSharpBindings/1.0";
public static readonly int RatesReqTimeout = 25;
public static readonly int TransactionReqTimeout = 25;
Expand Down
4 changes: 2 additions & 2 deletions Shippo/Shippo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

<PropertyGroup>
<TargetFrameworks>net45;net40</TargetFrameworks>
<Version>2.1.14</Version>
<Version>2.1.15</Version>
<Title>Shippo client library</Title>
<Description>.NET library which integrates with Shippo Multi Carrier Shipping API. This library provides access to Shippo (goshippo.com) API capabilities. Including label generation, rating, tracking and more.</Description>
<Summary>Shippo Shipping API client Library (USPS, FedEx, UPS, and more)</Summary>
<PackageProjectUrl>https://github.com/goshippo/shippo-csharp-client/</PackageProjectUrl>
<RepositoryUrl>https://github.com/goshippo/shippo-csharp-client/</RepositoryUrl>
<PackageTags>USPS Fedex UPS API Shippo</PackageTags>
<PackageReleaseNotes>Added support for OAuth Token with net40 and net45</PackageReleaseNotes>
<PackageReleaseNotes>Bug fix for extra slash in Shippo API URL</PackageReleaseNotes>
<RepositoryType>Github</RepositoryType>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
Expand Down

0 comments on commit c981ebe

Please sign in to comment.