Skip to content

Commit

Permalink
New major minor release 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed Jan 27, 2024
1 parent 0e36692 commit 3e539df
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2023 [Limbo](https://www.limbo.works/)
Copyright (c) 2024 [Limbo](https://www.limbo.works/)

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# 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)
# Skybrud.Essentials.Http

[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/skybrud/Skybrud.Essentials.Http/blob/v1/main/LICENSE.md)
[![NuGet](https://img.shields.io/nuget/v/Skybrud.Essentials.Http.svg)](https://www.nuget.org/packages/Skybrud.Essentials.Http)
[![NuGet](https://img.shields.io/nuget/dt/Skybrud.Essentials.Http.svg)](https://www.nuget.org/packages/Skybrud.Essentials.Http)

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.

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

or the older NuGet Package Manager:
or the NuGet Package Manager:

```
Install-Package Skybrud.Essentials.Http
Expand Down
Binary file not shown.
8 changes: 2 additions & 6 deletions src/Skybrud.Essentials.Http/Skybrud.Essentials.Http.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</PropertyGroup>

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

<ItemGroup Condition="'$(TargetFramework)'=='net45' OR '$(TargetFramework)'=='net46' OR '$(TargetFramework)'=='net47'">
<PackageReference Include="Nullable" Version="1.3.1" PrivateAssets="all" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<ItemGroup Condition="'$(TargetFramework)'=='net45' OR '$(TargetFramework)'=='net46' OR '$(TargetFramework)'=='net47' OR '$(TargetFramework)'=='netstandard2.0'">
<PackageReference Include="Nullable" Version="1.3.1" PrivateAssets="all" />
</ItemGroup>

Expand Down

0 comments on commit 3e539df

Please sign in to comment.