Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrzesniewski committed Dec 27, 2014
1 parent 1e55f0f commit 8912e39
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PCRE.NET

PCRE.NET is a .NET wrapper for the [PCRE library](http://www.pcre.org/). The goal of this project is to bring most of PCRE's features for use from .NET applications with as little overhead as possible.

**Status:** Version **0.2** is released, the most important features are available. Feedback is welcome.
**Status:** Version **0.3** is released, the most important features are available. Feedback is welcome.
As it is still at major version 0, the API may change anytime.

The currently wrapped PCRE version is **8.36**.
Expand All @@ -26,6 +26,7 @@ The following regex operations are supported:
- Replacement strings with placeholders: ``$n ${name} $& $_ $` $' $+``
- String splitting on matches: `PcreRegex.Split`
- Captured groups are included in the result
- Partial matching (when the subject is too short to match the pattern)

Library highlights:

Expand Down
2 changes: 1 addition & 1 deletion src/PCRE.NET.Wrapper/AssemblyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ using namespace System::Security::Permissions;
[assembly:AssemblyCultureAttribute(L"")];


[assembly:AssemblyVersionAttribute("0.2.0.0")];
[assembly:AssemblyVersionAttribute("0.3.0.0")];
[assembly:ComVisible(false)];
[assembly:CLSCompliantAttribute(true)];
4 changes: 2 additions & 2 deletions src/PCRE.NET/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
// 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.2.0.0")]
[assembly: AssemblyFileVersion("0.2.0.0")]
[assembly: AssemblyVersion("0.3.0.0")]
[assembly: AssemblyFileVersion("0.3.0.0")]

[assembly:InternalsVisibleTo("PCRE.NET.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100f155bb9aacf1d75e12075cf2dc0119341b318c8c322be0320af5d7a6ed6e24a33be604d0fbbd617092c8efb4890a4d02373b2c581ef82c5f811fb99013336e82fa3dbe4dcaea611c9d408e6143eb96ba00eaf8623b54dfea69160157df1cce3b86cd940d526c7ecf779651b896040ea391849732c06193593e5dcbbf514b24a2")]

0 comments on commit 8912e39

Please sign in to comment.