Skip to content

Commit

Permalink
Bump to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed May 27, 2019
1 parent ba670ef commit fe7f6aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.2.0 (27 May 2019)
- Add support for expressions for init value for fields and parameters

## 0.1.3 (27 May 2019)
- Fix exception on ToString if the type is a bool

Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ CppAst provides a C/C++ parser for header files with access to the full AST, com
- Full type system
- Provides basic access to attributes (`_declspec(...)` or `__attribute__((...))`)
- Provides access to attached comments
- Provides access to expressions for variable and parameter init value (e.g `const int x = (1 + 2) << 1` the `(1 + 2) << 1` will be retrievable as a binary expression from the AST)
- Provides access to macro definitions, including tokens via the option `CppParserOptions.ParseMacros` (default is `false`)

## Documentation
Expand Down
2 changes: 1 addition & 1 deletion src/CppAst/CppAst.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFrameworks>net46;netstandard2.0</TargetFrameworks>
<RuntimeIdentifiers>win7-x86;win7-x64;osx;linux-x64</RuntimeIdentifiers>
<VersionPrefix>0.1.3</VersionPrefix>
<VersionPrefix>0.2.0</VersionPrefix>
<!--<VersionSuffix>alpha</VersionSuffix>
<BuildNumber>001</BuildNumber>-->
<PackageId>CppAst</PackageId>
Expand Down

0 comments on commit fe7f6aa

Please sign in to comment.