Skip to content

Commit 3e539df

Browse files
committed
New major minor release 🎉
1 parent 0e36692 commit 3e539df

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

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 (c) 2023 [Limbo](https://www.limbo.works/)
3+
Copyright (c) 2024 [Limbo](https://www.limbo.works/)
44

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

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
# Skybrud.Essentials.Http [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE.md) [![NuGet](https://img.shields.io/nuget/v/Skybrud.Essentials.Http.svg)](https://www.nuget.org/packages/Skybrud.Essentials) [![NuGet](https://img.shields.io/nuget/dt/Skybrud.Essentials.Http.svg)](https://www.nuget.org/packages/Skybrud.Essentials)
1+
# Skybrud.Essentials.Http
2+
3+
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/skybrud/Skybrud.Essentials.Http/blob/v1/main/LICENSE.md)
4+
[![NuGet](https://img.shields.io/nuget/v/Skybrud.Essentials.Http.svg)](https://www.nuget.org/packages/Skybrud.Essentials.Http)
5+
[![NuGet](https://img.shields.io/nuget/dt/Skybrud.Essentials.Http.svg)](https://www.nuget.org/packages/Skybrud.Essentials.Http)
26

37
Skybrud.Essentials.Http is a small .NET library for making HTTP requests, as well as working with OAuth 1.0a and OAuth 2 service providers.
48

@@ -15,7 +19,7 @@ Install the package via [**NuGet**][NuGetPackage]. To install the package, you c
1519
dotnet add package Skybrud.Essentials.Http
1620
```
1721

18-
or the older NuGet Package Manager:
22+
or the NuGet Package Manager:
1923

2024
```
2125
Install-Package Skybrud.Essentials.Http
419 KB
Binary file not shown.

src/Skybrud.Essentials.Http/Skybrud.Essentials.Http.csproj

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<PropertyGroup>
15-
<VersionPrefix>1.1.6</VersionPrefix>
15+
<VersionPrefix>1.2.0</VersionPrefix>
1616
<VersionSuffix Condition="'$(Configuration)'=='Debug'">build$([System.DateTime]::UtcNow.ToString(`yyyyMMddHHmm`))</VersionSuffix>
1717
<Company>Limbo</Company>
1818
<Product>Skybrud.Essentials</Product>
@@ -35,11 +35,7 @@
3535
<PackageReference Include="Skybrud.Essentials" Version="1.1.54" />
3636
</ItemGroup>
3737

38-
<ItemGroup Condition="'$(TargetFramework)'=='net45' OR '$(TargetFramework)'=='net46' OR '$(TargetFramework)'=='net47'">
39-
<PackageReference Include="Nullable" Version="1.3.1" PrivateAssets="all" />
40-
</ItemGroup>
41-
42-
<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
38+
<ItemGroup Condition="'$(TargetFramework)'=='net45' OR '$(TargetFramework)'=='net46' OR '$(TargetFramework)'=='net47' OR '$(TargetFramework)'=='netstandard2.0'">
4339
<PackageReference Include="Nullable" Version="1.3.1" PrivateAssets="all" />
4440
</ItemGroup>
4541

0 commit comments

Comments
 (0)