Skip to content

Commit

Permalink
Merge branch 'main' into funcs
Browse files Browse the repository at this point in the history
  • Loading branch information
pakrym authored Dec 30, 2023
2 parents d4deff3 + 61dae13 commit e976c2d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Jab provides a [C# Source Generator](https://devblogs.microsoft.com/dotnet/intro
Add Jab package reference:
```xml
<ItemGroup>
<PackageReference Include="Jab" Version="0.10.0" PrivateAssets="all" />
<PackageReference Include="Jab" Version="0.10.2" PrivateAssets="all" />
</ItemGroup>
```

Expand Down Expand Up @@ -291,7 +291,7 @@ A minimal example ends up looking like this:
}
],
"dependencies": {
"com.pakrym.jab": "0.10.0",
"com.pakrym.jab": "0.10.2",
...
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/Jab.Attributes/Jab.Attributes.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<LangVersion>preview</LangVersion>
<RootNamespace>Jab</RootNamespace>
<DefineConstants>$(DefineConstants);JAB_ATTRIBUTES_PACKAGE;GENERIC_ATTRIBUTES</DefineConstants>
<Version>0.10.0</Version>
<Version>0.10.2</Version>
<Version Condition="'$(ReleaseVersion)' != ''">$(ReleaseVersion)</Version>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Jab.Performance/Jab.Performance.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Jab" Version="0.10.0" PrivateAssets="all" />
<PackageReference Include="Jab" Version="0.10.2" PrivateAssets="all" />
<PackageReference Include="BenchmarkDotNet" Version="0.12.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Jab.Unity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.pakrym.jab",
"version": "0.10.0",
"version": "0.10.2",
"description": "C# Source Generator based dependency injection container implementation.",
"licensesUrl": "https://github.com/pakrym/jab/blob/main/LICENSE",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion src/Jab/Jab.Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<Version>0.10.0</Version>
<Version>0.10.2</Version>
<Version Condition="'$(ReleaseVersion)' != ''">$(ReleaseVersion)</Version>
<EnableDefaultItems>false</EnableDefaultItems>
<RootNamespace>Jab</RootNamespace>
Expand Down
2 changes: 1 addition & 1 deletion src/samples/ConsoleSample/ConsoleSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Jab" Version="0.10.0" PrivateAssets="all" />
<PackageReference Include="Jab" Version="0.10.2" PrivateAssets="all" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/samples/ModuleSample/ModuleSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Jab" Version="0.10.0" PrivateAssets="all" />
<PackageReference Include="Jab" Version="0.10.2" PrivateAssets="all" />
</ItemGroup>

</Project>

0 comments on commit e976c2d

Please sign in to comment.