Skip to content

Commit

Permalink
updated release notes and documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gregsdennis committed May 10, 2018
1 parent 1cc1caa commit b785f96
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 8 deletions.
6 changes: 6 additions & 0 deletions Docs/1. Getting started.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ There is very little configuration that is required to get Manatee.Trello going
The only values that must be provided are for authorization, which you can read about [later in this document](#authorization).

> **.NET FRAMEWORK 4.5 USERS** Due to some changes by Microsoft, TLS 1.0 is no longer supported, however it *is* still the default for frameworks below 4.6. To remedy this, please put the following line of code in your application startup logic.
```csharp
ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls12;
```

Additional configuration is discussed on the [Configuration page](Configuration.md).

# Reading data
Expand Down
6 changes: 6 additions & 0 deletions Docs/2. Configuration.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Out of the box, there isn't much to configure for Manatee.Trello. Just set up authorization, and you're ready to go.

> **.NET FRAMEWORK 4.5 USERS** Due to some changes by Microsoft, TLS 1.0 is no longer supported, however it *is* still the default for frameworks below 4.6. To remedy this, please put the following line of code in your application startup logic.
```csharp
ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls12;
```

If, however, you're one to tinker, this page describes the various ways Manatee.Trello can be configured.

## Authorization
Expand Down
5 changes: 1 addition & 4 deletions Manatee.Trello.IntegrationTests/BoardTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Linq;
using System.Threading.Tasks;
using FluentAssertions;
using NUnit.Framework;
Expand Down
2 changes: 1 addition & 1 deletion Manatee.Trello.IntegrationTests/ManualTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
namespace Manatee.Trello.IntegrationTests
{
[TestFixture]
//[Ignore("This should only be run manually to clean up after halted tests (occurs if debugging a test and debugger is halted).")]
[Ignore("This should only be run manually to clean up after halted tests (occurs if debugging a test and debugger is halted).")]
public class ManualTests
{
[Test]
Expand Down
1 change: 1 addition & 0 deletions Manatee.Trello.sln
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "SolutionItems", "SolutionIt
build.bat = build.bat
nuget-restore.ps1 = nuget-restore.ps1
README.md = README.md
RELEASE NOTES.md = RELEASE NOTES.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Manatee.Trello.UnitTests", "Manatee.Trello.UnitTests\Manatee.Trello.UnitTests.csproj", "{7842959C-F2CE-4DDC-9A42-C11EDAB548E6}"
Expand Down
9 changes: 6 additions & 3 deletions Manatee.Trello/Manatee.Trello.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@
<TargetFrameworks>net45;netstandard1.3;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Description>A fully object-oriented .Net wrapper for the TrelloAPI.</Description>
<Version>3.0.6</Version>
<Version>3.0.7</Version>
<Copyright>Copyright © 2018 Little Crab Solutions</Copyright>
<PackageLicenseUrl>https://github.com/gregsdennis/Manatee.Trello/blob/master/LICENSE.txt</PackageLicenseUrl>
<PackageIconUrl>https://github.com/gregsdennis/Manatee.Trello/blob/master/Resources/Manatee-Trello-Icon.png</PackageIconUrl>
<PackageProjectUrl>https://github.com/gregsdennis/Manatee.Trello</PackageProjectUrl>
<PackageTags>api wrapper trello manatee</PackageTags>
<PackageReleaseNotes>Please be sure to read the wiki pages at https://github.com/gregsdennis/Manatee.Trello/wiki. Feedback and questions are welcome through GitHub, Gitter, or on StackOverflow.
<PackageReleaseNotes>Please be sure to read the wiki pages at https://github.com/gregsdennis/Manatee.Trello/wiki. Feedback and questions are welcome through GitHub, Slack, or on StackOverflow.

v3.0.7
General bug fixes

v3.0.6
BUG FIX: Boards and cards hang when using short ID.
Expand Down Expand Up @@ -44,7 +47,7 @@ Optionally retain entities in the cache on delete.</PackageReleaseNotes>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>Manatee.Trello.snk</AssemblyOriginatorKeyFile>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
<FileVersion>3.0.6.0</FileVersion>
<FileVersion>3.0.7.0</FileVersion>
<Authors>gregsdennis</Authors>
<Company>Little Crab Solutions</Company>
</PropertyGroup>
Expand Down
1 change: 1 addition & 0 deletions Manatee.Trello/Rest/WebApiClient.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Threading;
Expand Down
10 changes: 10 additions & 0 deletions RELEASE NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
This file is used to list specific public-facing changes for each version. The notes on the Nuget package are a summary of these.

## 3.0.7

Internal updates to collection classes.

## 3.0.6

Updated boards and cards to only cache themselves once the full ID has been downloaded.

## 3.0.5

Fixed further issues with deserialization.
Expand Down

0 comments on commit b785f96

Please sign in to comment.