Skip to content

Commit

Permalink
cppdep 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rakhimov committed Feb 3, 2017
1 parent 3fd287d commit f293e33
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,30 @@ and this project adheres to [Semantic Versioning](http://semver.org/)


## [Unreleased]

## [0.2.0] - 2017-02-02
### Added
- Pairing header and implementation files in different locations (#19)
- Handle 'ipp' template implementation source files (#31)
- Behavior specification for anomalous conflicting component files (#27)
- Implement ignore/exclude paths (#23)
- Accept glob pattern for source paths (#36)
- Project wiki pages
- Regex pattern based include directive classification (#22)
- Deduce external packages from the include directive w/o filesystem search (#18)
- Handle header files w/o extensions (Boost/STL/Qt/etc.) (#32)
- Use POSIX path separator in component names (for cross-platform report stability)
- Configuration file validation against the schema (with PyKwalify)

### Changed
- pytest instead of nose
- YAML configuration files instead of XML (#24)

### Removed
- Implicit single-path alias Package construction

### Fixed
- Exception leaks out of main()
- Unicode Escape Error on graph dot on Windows with Python 2.7 (#35)
- Python3 UnicodeDecodeError for 'utf-8' in source files (#30)
- Logging: Type Error: not all arguments converted during string formatting (#28)
Expand Down
2 changes: 1 addition & 1 deletion cppdep.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
from graph import Graph


VERSION = '0.1.0' # The latest release version.
VERSION = '0.2.0' # The latest release version.

_SCHEMA_FILE = os.path.join(os.path.dirname(os.path.abspath(__file__)),
'config_schema.yml')
Expand Down

0 comments on commit f293e33

Please sign in to comment.