Skip to content
This repository was archived by the owner on Mar 16, 2025. It is now read-only.

Commit a76a6e3

Browse files
Update version information
1 parent f3c4e5b commit a76a6e3

File tree

5 files changed

+23
-11
lines changed

5 files changed

+23
-11
lines changed

Changelog.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
Changelog
22
=============
33

4+
Version 1.1.1
5+
===
6+
7+
#### 1.1.1
8+
(2021-03-16)
9+
10+
Fixed:
11+
12+
- GetShowAsync returns Status null when status is 'upcoming' ([Issue 208](https://github.com/henrikfroehling/Trakt.NET/issues/208))
13+
- GetShowAsync returns Status null when status is 'planned' ([Issue 221](https://github.com/henrikfroehling/Trakt.NET/issues/221))
14+
- Calendar methods do not accept a value greater than 31 for days ([Issue 220](https://github.com/henrikfroehling/Trakt.NET/issues/220))
15+
16+
---------
17+
418
Version 1.1.0
519
===
620

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright © 2016 - 2020 Henrik Fröhling et al.
3+
Copyright © 2016 - 2021 Henrik Fröhling et al.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ _**Formerly known as [TraktApiSharp](https://github.com/henrikfroehling/TraktApi
88
**This is a .NET wrapper library for the [Trakt.tv](https://trakt.tv/) [API](http://docs.trakt.apiary.io/#).**
99

1010
[![Project Status](https://img.shields.io/badge/Project%20Status-In%20Development-green)](https://img.shields.io/badge/Project%20Status-In%20Development-green)
11-
[![NuGet Package](https://img.shields.io/badge/NuGet-v1.1.0-green.svg?style=flat)](https://www.nuget.org/packages/Trakt.NET/1.1.0)
11+
[![NuGet Package](https://img.shields.io/badge/NuGet-v1.1.1-green.svg?style=flat)](https://www.nuget.org/packages/Trakt.NET/1.1.1)
1212
[![License](https://img.shields.io/badge/License-MIT-blue.svg?style=flat)](https://opensource.org/licenses/MIT)
1313
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
1414
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=henrikfroehling_Trakt.NET&metric=alert_status)](https://sonarcloud.io/dashboard?id=henrikfroehling_Trakt.NET)
@@ -51,8 +51,6 @@ _**Formerly known as [TraktApiSharp](https://github.com/henrikfroehling/TraktApi
5151
| Branch | Status | Description |
5252
|---|---|---|
5353
| [develop](https://github.com/henrikfroehling/Trakt.NET/tree/develop) | [![Build status](https://dev.azure.com/henrikfroehling/Trakt.NET/_apis/build/status/Trakt.NET-CI-Developer-Preview)](https://dev.azure.com/henrikfroehling/Trakt.NET/_build/latest?definitionId=5) | This branch tracks the current and possibly unstable development. |
54-
| [release 1.0.0](https://github.com/henrikfroehling/Trakt.NET/tree/release-1.0.0) | [![Build status](https://dev.azure.com/henrikfroehling/Trakt.NET/_apis/build/status/Trakt.NET-CI-Release-1.0.0)](https://dev.azure.com/henrikfroehling/Trakt.NET/_build/latest?definitionId=6) | This branch tracks the current development of release 1.0.0. |
55-
| [release 1.1.0](https://github.com/henrikfroehling/Trakt.NET/tree/release-1.1.0) | [![Build status](https://dev.azure.com/henrikfroehling/Trakt.NET/_apis/build/status/Trakt.NET-CI-Release-1.1.0)](https://dev.azure.com/henrikfroehling/Trakt.NET/_build/latest?definitionId=13) | This branch tracks the current development of the next upcoming release. |
5654

5755
### Getting Started
5856

@@ -201,7 +199,7 @@ if (theMartian)
201199
```text
202200
The MIT License (MIT)
203201
204-
Copyright © 2016 - 2020 Henrik Fröhling et al.
202+
Copyright © 2016 - 2021 Henrik Fröhling et al.
205203
206204
Permission is hereby granted, free of charge, to any person obtaining a copy
207205
of this software and associated documentation files (the "Software"), to deal

Source/Lib/Trakt.NET/Trakt.NET.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
<RootNamespace>TraktNet</RootNamespace>
66
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
77
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
8-
<Version>1.1.0</Version>
8+
<Version>1.1.1</Version>
99
<Authors>Henrik Fröhling</Authors>
1010
<Company>Henrik Fröhling</Company>
1111
<PackageLicenseUrl>https://github.com/henrikfroehling/Trakt.NET/blob/develop/LICENSE.md</PackageLicenseUrl>
1212
<PackageProjectUrl>https://github.com/henrikfroehling/Trakt.NET</PackageProjectUrl>
13-
<Copyright>Copyright © 2016 - 2020 Henrik Fröhling et al.</Copyright>
13+
<Copyright>Copyright © 2016 - 2021 Henrik Fröhling et al.</Copyright>
1414
<Description>.NET wrapper library for the Trakt.tv API.
1515

1616
Features
@@ -22,7 +22,7 @@ Features
2222
- Language Service</Description>
2323
<RepositoryUrl>https://github.com/henrikfroehling/Trakt.NET</RepositoryUrl>
2424
<PackageTags>trakt rest api</PackageTags>
25-
<PackageReleaseNotes>https://github.com/henrikfroehling/Trakt.NET/blob/develop/Changelog.md#110</PackageReleaseNotes>
25+
<PackageReleaseNotes>https://github.com/henrikfroehling/Trakt.NET/blob/develop/Changelog.md#111</PackageReleaseNotes>
2626
</PropertyGroup>
2727

2828
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">

Source/Lib/Trakt.NET/Trakt.NET.nuspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>Trakt.NET</id>
5-
<version>1.1.0$versionSuffix$</version>
5+
<version>1.1.1$versionSuffix$</version>
66
<title>Trakt.NET</title>
77
<authors>Henrik Fröhling</authors>
88
<owners>henrikfroehling</owners>
@@ -20,8 +20,8 @@ Features
2020
- Language Service
2121
</description>
2222
<summary>.NET wrapper library for the Trakt.tv API.</summary>
23-
<releaseNotes>https://github.com/henrikfroehling/Trakt.NET/blob/develop/Changelog.md#110</releaseNotes>
24-
<copyright>Copyright (c) 2016 - 2020 Henrik Fröhling et al.</copyright>
23+
<releaseNotes>https://github.com/henrikfroehling/Trakt.NET/blob/develop/Changelog.md#111</releaseNotes>
24+
<copyright>Copyright (c) 2016 - 2021 Henrik Fröhling et al.</copyright>
2525
<language>en-US</language>
2626
<tags>trakt rest api</tags>
2727
<dependencies>

0 commit comments

Comments
 (0)