Skip to content

Commit

Permalink
Update version and README
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrzesniewski committed Sep 16, 2018
1 parent 4b45b1e commit 8b45a02
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ PCRE.NET
[![NuGet package](https://img.shields.io/nuget/v/PCRE.NET.svg)](https://www.nuget.org/packages/PCRE.NET)
[![Build status](https://ci.appveyor.com/api/projects/status/u48itxciyspgi8cu/branch/master?svg=true)](https://ci.appveyor.com/project/ltrzesniewski/pcre-net/branch/master)
[![GitHub release](https://img.shields.io/github/release/ltrzesniewski/pcre-net.svg)](https://github.com/ltrzesniewski/pcre-net/releases)
[![PCRE](https://img.shields.io/badge/pcre-v10.31-blue.svg)](http://www.pcre.org/)
[![PCRE](https://img.shields.io/badge/pcre-v10.32-blue.svg)](http://www.pcre.org/)
[![License](https://img.shields.io/badge/license-BSD-blue.svg)](https://github.com/ltrzesniewski/pcre-net/blob/master/LICENCE)

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.

The current version on the *master* branch is **0.7.0**, based on PCRE **10.31**.
The current version on the *master* branch is **0.7.1**, based on PCRE **10.32**.

## Dependencies ##

Expand Down Expand Up @@ -133,7 +133,7 @@ var isValidJson = regex.IsMatch(subject);

## To do ##

- Implement a less verbose managed/native interface
- ~Implement a less verbose managed/native interface~ Rewrite the library to use P/Invoke instead of C++/CLI
- Include more tests from the PCRE test suite
- Documentation
- XML doc comments
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.7.0.0")];
[assembly:AssemblyVersionAttribute("0.7.1.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.7.0.0")]
[assembly: AssemblyFileVersion("0.7.0.0")]
[assembly: AssemblyVersion("0.7.1.0")]
[assembly: AssemblyFileVersion("0.7.1.0")]

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

0 comments on commit 8b45a02

Please sign in to comment.