Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyerst committed Mar 18, 2022
1 parent 9610d3c commit 4079b85
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions FastGenericNew.Shared.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<Version>3.0.0-preview2.1</Version>
<AssemblyVersion>3.0.0</AssemblyVersion>
<Version>3.1.0-preview1</Version>
<AssemblyVersion>3.1.0</AssemblyVersion>
</PropertyGroup>

<!-- Nuget Package Properties -->
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FastGenericNew 3.0.0 [![Tests](https://github.com/Nyerst/FastGenericNew/actions/workflows/tests.yml/badge.svg)](https://github.com/Nyerst/FastGenericNew/actions/workflows/tests.yml) [![](https://img.shields.io/nuget/vpre/FastGenericNew)](https://www.nuget.org/packages/FastGenericNew/) [![](https://img.shields.io/nuget/vpre/FastGenericNew.SourceGenerator?label=SourceGenerator)](https://www.nuget.org/packages/FastGenericNew.SourceGenerator/)
# FastGenericNew V3 [![Tests](https://github.com/Nyerst/FastGenericNew/actions/workflows/tests.yml/badge.svg)](https://github.com/Nyerst/FastGenericNew/actions/workflows/tests.yml) [![](https://img.shields.io/nuget/vpre/FastGenericNew)](https://www.nuget.org/packages/FastGenericNew/) [![](https://img.shields.io/nuget/vpre/FastGenericNew.SourceGenerator?label=SourceGenerator)](https://www.nuget.org/packages/FastGenericNew.SourceGenerator/)

The ultimate fast alternative to `Activator.CreateInstance<T>` / `new T()`

Expand Down Expand Up @@ -30,24 +30,24 @@ The ultimate fast alternative to `Activator.CreateInstance<T>` / `new T()`
### Pre-Compiled Version

```powershell
dotnet add package FastGenericNew --version 3.0.0-preview2.1
dotnet add package FastGenericNew --version 3.1.0-preview1
```

```xml
<ItemGroup>
<PackageReference Include="FastGenericNew" Version="3.0.0-preview2.1" />
<PackageReference Include="FastGenericNew" Version="3.1.0-preview1" />
</ItemGroup>
```

### SourceGenerator Version

```powershell
dotnet add package FastGenericNew.SourceGenerator --version 3.0.0-preview2.1
dotnet add package FastGenericNew.SourceGenerator --version 3.1.0-preview1
```

```xml
<ItemGroup>
<PackageReference Include="FastGenericNew.SourceGenerator" Version="3.0.0-preview2.1" />
<PackageReference Include="FastGenericNew.SourceGenerator" Version="3.1.0-preview1" />
</ItemGroup>
```

Expand Down

0 comments on commit 4079b85

Please sign in to comment.