diff --git a/README.md b/README.md index 4e4e6c0..9fd5793 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/SharedBuildProperties.props b/SharedBuildProperties.props index 9c658e6..1cd43ee 100644 --- a/SharedBuildProperties.props +++ b/SharedBuildProperties.props @@ -2,7 +2,7 @@ xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> Solnet.Serum - 5.0.6 + 5.0.7 Copyright 2022 © Solnet blockmountain blockmountain diff --git a/Solnet.Serum.Examples/Solnet.Serum.Examples.csproj b/Solnet.Serum.Examples/Solnet.Serum.Examples.csproj index a3c1802..bba3314 100644 --- a/Solnet.Serum.Examples/Solnet.Serum.Examples.csproj +++ b/Solnet.Serum.Examples/Solnet.Serum.Examples.csproj @@ -12,8 +12,8 @@ - - - + + + diff --git a/Solnet.Serum/Solnet.Serum.csproj b/Solnet.Serum/Solnet.Serum.csproj index e695cc5..8c60f6b 100644 --- a/Solnet.Serum/Solnet.Serum.csproj +++ b/Solnet.Serum/Solnet.Serum.csproj @@ -19,9 +19,9 @@ - - - + + + diff --git a/chver.sh b/chver.sh new file mode 100644 index 0000000..d71b267 --- /dev/null +++ b/chver.sh @@ -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 \ No newline at end of file