Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosas committed Mar 26, 2020
1 parent a76ff53 commit 886b3c7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
# Changelog
All notable changes to this project will be documented in this file.

## 0.6.1
- Fix exclusions ignored in non-ast classes
- Add `ComposerSourceSelector` and `ComposerDependencySelector`
```
$this->newRule
->classesThat(Selector::areAutoloadableFromComposer('file-composer-json', false))
->mustNotDependOn()
->classesThat(Selector::areDependenciesFromComposer('file-composer-json', 'file-composer-lock', true))
```
## 0.6.0
- Add selection out of the src scope using full or partial class names
```
return $this->newRule
$this->newRule
->classesThat(Selector::haveClassName('App\*'))
->mustNotDependOn()
->classesThat(Selector::haveClassName('Symfony\*'))
Expand Down

0 comments on commit 886b3c7

Please sign in to comment.