diff --git a/CHANGELOG.md b/CHANGELOG.md index 5693964..bf95d53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ # Change Log All notable changes to this project will be documented in this file. -## v0.1.2 - UNRELEASED +## v0.1.3 - UNRELEASED +Nothing yet. + +## v0.1.2 - 2015-07-05 ### Added - Declare stmt finder -@todo Adapt namespace aliases to annotation to keep annotationparser alive + +### Fixed +Interoperability to annotation parser ## v0.1.1 - 2015-07-02 ### Added diff --git a/src/Convertor.php b/src/Converter.php similarity index 97% rename from src/Convertor.php rename to src/Converter.php index 08308cd..96d6005 100644 --- a/src/Convertor.php +++ b/src/Converter.php @@ -28,7 +28,7 @@ use PhpParser\Node; use PhpParser\NodeVisitorAbstract; -class Convertor extends NodeVisitorAbstract +class Converter extends NodeVisitorAbstract { /** @var array */ private $uses = array(); diff --git a/src/Factory.php b/src/Factory.php index 215fda3..b949166 100644 --- a/src/Factory.php +++ b/src/Factory.php @@ -60,7 +60,7 @@ protected function createCommand(ClassLoader $loader) $filterTraverser->addVisitor($collector); $writerTraverser = new \PhpParser\NodeTraverser; - $writerTraverser->addVisitor(new Convertor); + $writerTraverser->addVisitor(new Converter); $filter = new Filter($parser, $filterTraverser, $collector, $loader); $writer = new Writer($parser, $writerTraverser, new Printer); diff --git a/src/MessageInterface.php b/src/MessageInterface.php index c5c78da..dc315a9 100644 --- a/src/MessageInterface.php +++ b/src/MessageInterface.php @@ -27,7 +27,7 @@ interface MessageInterface { - const VERSION = 'dev-master'; + const VERSION = 'v0.1.2'; const NAME = 'Squeezer';