File tree 8 files changed +17
-10
lines changed
BenchDashboard/Properties
8 files changed +17
-10
lines changed Original file line number Diff line number Diff line change 32
32
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
33
33
// übernehmen, indem Sie "*" eingeben:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "0.23.0 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "0.23.0 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "0.23.1 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "0.23.1 .0" ) ]
Original file line number Diff line number Diff line change 32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "0.23.0 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "0.23.0 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "0.23.1 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "0.23.1 .0" ) ]
Original file line number Diff line number Diff line change 32
32
// You can specify all the values or you can default the Build and Revision Numbers
33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "0.23.0 .0" ) ]
36
- [ assembly: AssemblyFileVersion ( "0.23.0 .0" ) ]
35
+ [ assembly: AssemblyVersion ( "0.23.1 .0" ) ]
36
+ [ assembly: AssemblyFileVersion ( "0.23.1 .0" ) ]
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ namespace Mastersign.Bench.PropertyCollections
22
22
/// </summary>
23
23
public class GroupedVariableResolver : IValueResolver , IGroupedValueResolver
24
24
{
25
- private static readonly Regex DefaultGroupVariablePattern = new Regex ( "\\ $(?<group>. *?):(?<name>. +?)\\ $" ) ;
25
+ private static readonly Regex DefaultGroupVariablePattern = new Regex ( "\\ $(?<group>[^:$] *?):(?<name>[^:$] +?)\\ $" ) ;
26
26
27
27
/// <summary>
28
28
/// A regular expression, that detects variable references.
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ namespace Mastersign.Bench.PropertyCollections
22
22
/// </summary>
23
23
public class VariableResolver : IValueResolver , IGroupedValueResolver
24
24
{
25
- private static readonly Regex DefaultVariablePattern = new Regex ( "\\ $(?<name>. +?)\\ $" ) ;
25
+ private static readonly Regex DefaultVariablePattern = new Regex ( "\\ $(?<name>[^:$] +?)\\ $" ) ;
26
26
27
27
/// <summary>
28
28
/// A regular expression, that detects variable references.
Original file line number Diff line number Diff line change @@ -25,6 +25,13 @@ Add a link to the GitHub diff like
25
25
26
26
[ Unreleased ] : https://github.com/winbench/bench/compare/master...dev
27
27
28
+ ## [ 0.23.1] - 2024-04-17
29
+
30
+ [ 0.23.1 ] : https://github.com/winbench/bench/compare/v0.23.0...v0.23.1
31
+
32
+ ### Fixed
33
+ * Failing property value resolution in some edge cases
34
+
28
35
## [ 0.23.0] - 2024-04-12
29
36
30
37
[ 0.23.0 ] : https://github.com/winbench/bench/compare/v0.22.6...v0.23.0
Original file line number Diff line number Diff line change 7
7
:: https://winbench.org/guide/setup/
8
8
::
9
9
10
- SET VERSION = 0.23.0
10
+ SET VERSION = 0.23.1
11
11
SET TAG = v%VERSION%
12
12
SET ROOT = %~dp0
13
13
IF [%1 ] NEQ [] SET ROOT = %~dpnx1 \
Original file line number Diff line number Diff line change 1
- 0.23.0
1
+ 0.23.1
You can’t perform that action at this time.
0 commit comments