Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Commit

Permalink
docs: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Nybroe committed May 19, 2021
1 parent e6f10ea commit f507cf9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [v1.2.1 (2021-05-19)](https://github.com/pestphp/pest-plugin-expectations/compare/v1.2.0...v1.2.1)
### Changed
- Check if global function is already defined. ([#10](https://github.com/pestphp/pest-plugin-expectations/pull/10), [e6f10ea](https://github.com/pestphp/pest-plugin-expectations/commit/e6f10ea3335f8e2167b444ec322f1a76b595ae07))

## [v1.2.0 (2021-05-19)](https://github.com/pestphp/pest-plugin-expectations/compare/v1.1.0...v1.2.0)
### Added
- Allows to create an `sequence` of expectations item of an iterable "value". ([#9](https://github.com/pestphp/pest-plugin-expectations/pull/9), [3b89b7d](https://github.com/pestphp/pest-plugin-expectations/commit/3b89b7ddc490811d3dc69ecaea6098f0f361147c))
Expand Down
2 changes: 1 addition & 1 deletion src/Autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Pest\Plugin::uses(Expectations::class);
}

if (! function_exists('expect')) {
if (!function_exists('expect')) {
/**
* Creates a new expectation.
*
Expand Down

0 comments on commit f507cf9

Please sign in to comment.