Skip to content
This repository was archived by the owner on Sep 24, 2020. It is now read-only.

Commit 0142d78

Browse files
committed
Update NRefactory version number to 5.3.0
1 parent 46881e6 commit 0142d78

File tree

4 files changed

+7
-15
lines changed

4 files changed

+7
-15
lines changed

ICSharpCode.NRefactory/Properties/GlobalAssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// associated with an assembly.
1212
[assembly: AssemblyCompany("ICSharpCode")]
1313
[assembly: AssemblyProduct("SharpDevelop/MonoDevelop")]
14-
[assembly: AssemblyCopyright("Copyright 2010-2012 AlphaSierraPapa")]
14+
[assembly: AssemblyCopyright("Copyright 2010-2013 AlphaSierraPapa")]
1515

1616
// This sets the default COM visibility of types in the assembly to invisible.
1717
// If you need to expose a type to COM, use [ComVisible(true)] on that type.
@@ -23,4 +23,4 @@
2323

2424
// [AssemblyFileVersion] is the version of the NuGet package,
2525
// should follow http://semver.org/ rules
26-
[assembly: AssemblyFileVersion("5.2.0")]
26+
[assembly: AssemblyFileVersion("5.3.0")]

Packages/ICSharpCode.NRefactory.nuspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>ICSharpCode.NRefactory</id>
5-
<version>5.2.0</version>
5+
<version>5.3.0</version>
66
<title>NRefactory</title>
77
<authors>Daniel Grunwald, Mike Krüger, Erik Källén</authors>
88
<owners>Daniel Grunwald</owners>
@@ -12,7 +12,7 @@
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<description>NRefactory supports analysis of C# source code: it includes a parser, abstract syntax tree, type system, semantic analysis (resolver), code completion, and several refactorings.</description>
1414
<!--<releaseNotes></releaseNotes>-->
15-
<copyright>Copyright 2010-2012 AlphaSierraPapa</copyright>
15+
<copyright>Copyright 2010-2013 AlphaSierraPapa</copyright>
1616
<tags>C# Parser Semantic Analysis SharpDevelop</tags>
1717
<dependencies>
1818
<dependency id="Mono.Cecil" version="0.9.5.2" />

README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Features:
2323

2424
Non-Features:
2525
- VB support is not implemented yet.
26-
- NRefactory cannot generate IL code
26+
- NRefactory cannot generate IL code -- it's a compiler frontend, not a full compiler
2727

2828
Dependencies:
2929
.NET 4.0
@@ -206,7 +206,7 @@ A: This question is a bit difficult to answer.
206206
-> this is being worked on; for the time being, NRefactory uses a global lock during parsing;
207207
so it's thread-safe but slow.
208208

209-
Some instance methods may use hidden instance state, so it is not safe to e.g use an instance
209+
Some instance methods may use hidden instance state, so it is not safe to e.g. use an instance
210210
of the CSharp.Resolver.TypeInference class concurrently.
211211
Instead, you need to create an instance on every thread.
212212

doc/TODO

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11

22
Parser:
33
- put newlines into the AST
4-
- add API to report errors
5-
- allow multithreaded parsing
4+
- eliminate the global lock
65

76
Type System:
87
- Reduce memory usage
@@ -12,10 +11,3 @@ Resolver:
1211
- Port all #D resolver unit tests to NR
1312
- Port all MD resolver unit tests to NR
1413

15-
Features:
16-
- Code Completion
17-
- Extract Method refactoring
18-
19-
For integration into SharpDevelop:
20-
- Review NR and DOM changes done in the timeframe
21-

0 commit comments

Comments
 (0)