diff --git a/mustache-sharp.test/Properties/AssemblyInfo.cs b/mustache-sharp.test/Properties/AssemblyInfo.cs index ee7d29c..ea38851 100644 --- a/mustache-sharp.test/Properties/AssemblyInfo.cs +++ b/mustache-sharp.test/Properties/AssemblyInfo.cs @@ -31,5 +31,5 @@ using System.Runtime.InteropServices; // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("0.0.7.1")] -[assembly: AssemblyFileVersion("0.0.7.1")] +[assembly: AssemblyVersion("0.0.7.2")] +[assembly: AssemblyFileVersion("0.0.7.2")] diff --git a/mustache-sharp/FormatCompiler.cs b/mustache-sharp/FormatCompiler.cs index bf99be4..c81e6dc 100644 --- a/mustache-sharp/FormatCompiler.cs +++ b/mustache-sharp/FormatCompiler.cs @@ -114,7 +114,7 @@ namespace mustache } matches.Add(getUnknownTagRegex()); string match = "{{(" + String.Join("|", matches) + ")}}"; - regex = new Regex(match, RegexOptions.Compiled); + regex = new Regex(match); _regexLookup.Add(definition.Name, regex); } return regex; diff --git a/mustache-sharp/Properties/AssemblyInfo.cs b/mustache-sharp/Properties/AssemblyInfo.cs index c2029f3..c413d0b 100644 --- a/mustache-sharp/Properties/AssemblyInfo.cs +++ b/mustache-sharp/Properties/AssemblyInfo.cs @@ -34,6 +34,6 @@ using System.Runtime.CompilerServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.0.7.1")] -[assembly: AssemblyFileVersion("0.0.7.1")] +[assembly: AssemblyVersion("0.0.7.2")] +[assembly: AssemblyFileVersion("0.0.7.2")] [assembly: InternalsVisibleTo("mustache-sharp.test")] \ No newline at end of file