Skip to content

Commit

Permalink
Version bump. 5.0.7(#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiago18c authored Jun 27, 2022
1 parent ce611d7 commit 59a91d6
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ separate repository so it is contained, as the goal for [Solnet](https://github.
- net 5.0

## Dependencies
- Solnet.Rpc v5.0.6
- Solnet.Wallet v5.0.6
- Solnet.Programs v5.0.6
- Solnet.Rpc v5.0.7
- Solnet.Wallet v5.0.7
- Solnet.Programs v5.0.7

## 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.Serum</Product>
<Version>5.0.6</Version>
<Version>5.0.7</Version>
<Copyright>Copyright 2022 &#169; Solnet</Copyright>
<Authors>blockmountain</Authors>
<PublisherName>blockmountain</PublisherName>
Expand Down
6 changes: 3 additions & 3 deletions Solnet.Serum.Examples/Solnet.Serum.Examples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Solnet.Rpc" Version="5.0.6" />
<PackageReference Include="Solnet.Wallet" Version="5.0.6" />
<PackageReference Include="Solnet.KeyStore" Version="5.0.6" />
<PackageReference Include="Solnet.Rpc" Version="5.0.7" />
<PackageReference Include="Solnet.Wallet" Version="5.0.7" />
<PackageReference Include="Solnet.KeyStore" Version="5.0.7" />
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions Solnet.Serum/Solnet.Serum.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0.0" />
<PackageReference Include="Solnet.Programs" Version="5.0.6" />
<PackageReference Include="Solnet.Rpc" Version="5.0.6" />
<PackageReference Include="Solnet.Wallet" Version="5.0.6" />
<PackageReference Include="Solnet.Programs" Version="5.0.7" />
<PackageReference Include="Solnet.Rpc" Version="5.0.7" />
<PackageReference Include="Solnet.Wallet" Version="5.0.7" />
</ItemGroup>


Expand Down
15 changes: 15 additions & 0 deletions chver.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

PREV="5.0.7"

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

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

0 comments on commit 59a91d6

Please sign in to comment.