Skip to content

Commit

Permalink
release preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
mamuz committed Jul 4, 2015
1 parent 3366a3a commit 9226b13
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Convertor.php → src/Converter.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
use PhpParser\Node;
use PhpParser\NodeVisitorAbstract;

class Convertor extends NodeVisitorAbstract
class Converter extends NodeVisitorAbstract
{
/** @var array */
private $uses = array();
Expand Down
2 changes: 1 addition & 1 deletion src/Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion src/MessageInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

interface MessageInterface
{
const VERSION = 'dev-master';
const VERSION = 'v0.1.2';

const NAME = 'Squeezer';

Expand Down

0 comments on commit 9226b13

Please sign in to comment.