Skip to content

Commit

Permalink
Version bump 6.0.13 (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiago18c authored Jun 27, 2022
1 parent 464396e commit d1f8eea
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 18 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,10 +97,10 @@ separate repository so it is contained, as the goal for [Solnet](https://github.

## Dependencies
- BlockMountain.TradingView v1.0.0
- Solnet.Serum v6.0.12
- Solnet.Wallet v6.0.12
- Solnet.Rpc v6.0.12
- Solnet.Programs v6.0.12
- Solnet.Serum v6.0.13
- Solnet.Wallet v6.0.13
- Solnet.Rpc v6.0.13
- Solnet.Programs v6.0.13

## Examples

Expand Down
2 changes: 1 addition & 1 deletion SharedBuildProperties.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Product>Solnet.Mango</Product>
<Version>6.0.12</Version>
<Version>6.0.13</Version>
<Copyright>Copyright 2022 &#169; blockmountain</Copyright>
<Authors>blockmountain</Authors>
<PublisherName>blockmountain</PublisherName>
Expand Down
12 changes: 6 additions & 6 deletions Solnet.Mango.Examples/Solnet.Mango.Examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Solnet.Programs" Version="6.0.12" />
<PackageReference Include="Solnet.Rpc" Version="6.0.12" />
<PackageReference Include="Solnet.Wallet" Version="6.0.12" />
<PackageReference Include="Solnet.KeyStore" Version="6.0.12" />
<PackageReference Include="Solnet.Pyth" Version="6.0.12" />
<PackageReference Include="Solnet.Serum" Version="6.0.12" />
<PackageReference Include="Solnet.Programs" Version="6.0.13" />
<PackageReference Include="Solnet.Rpc" Version="6.0.13" />
<PackageReference Include="Solnet.Wallet" Version="6.0.13" />
<PackageReference Include="Solnet.KeyStore" Version="6.0.13" />
<PackageReference Include="Solnet.Pyth" Version="6.0.13" />
<PackageReference Include="Solnet.Serum" Version="6.0.13" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions Solnet.Mango.Test/Solnet.Mango.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Solnet.Rpc" Version="6.0.12" />
<PackageReference Include="Solnet.Wallet" Version="6.0.12" />
<PackageReference Include="Solnet.Serum" Version="6.0.12" />
<PackageReference Include="Solnet.Rpc" Version="6.0.13" />
<PackageReference Include="Solnet.Wallet" Version="6.0.13" />
<PackageReference Include="Solnet.Serum" Version="6.0.13" />
</ItemGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions Solnet.Mango/Solnet.Mango.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
<PackageReference Include="Solnet.Programs" Version="6.0.12" />
<PackageReference Include="Solnet.Rpc" Version="6.0.12" />
<PackageReference Include="Solnet.Wallet" Version="6.0.12" />
<PackageReference Include="Solnet.Serum" Version="6.0.12" />
<PackageReference Include="Solnet.Programs" Version="6.0.13" />
<PackageReference Include="Solnet.Rpc" Version="6.0.13" />
<PackageReference Include="Solnet.Wallet" Version="6.0.13" />
<PackageReference Include="Solnet.Serum" Version="6.0.13" />
</ItemGroup>

<Import Project="..\SharedBuildProperties.props" />
Expand Down
16 changes: 16 additions & 0 deletions chver.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash

PREV="6.0.13"

FILES="README.md
SharedBuildProperties.props
Solnet.Mango/Solnet.Mango.csproj
Solnet.Mango.Examples/Solnet.Mango.Examples.csproj
Solnet.Mango.Test/Solnet.Mango.Test.csproj
chver.sh"

for f in $FILES
do
echo $f
sed -i "s/$PREV/$1/g" $f
done

0 comments on commit d1f8eea

Please sign in to comment.