Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sebastianbergmann/phpunit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.6.7
Choose a base ref
...
head repository: sebastianbergmann/phpunit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.6.8
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on May 28, 2015

  1. Prepare release

    sebastianbergmann committed May 28, 2015

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a6cd74b View commit details
Showing with 5 additions and 1 deletion.
  1. +4 −0 ChangeLog-4.6.md
  2. +1 −1 src/Runner/Version.php
4 changes: 4 additions & 0 deletions ChangeLog-4.6.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes in PHPUnit 4.6

## PHPUnit 4.6.8

* New PHAR release due to updated dependencies

## PHPUnit 4.6.7

* New PHAR release due to updated dependencies
2 changes: 1 addition & 1 deletion src/Runner/Version.php
Original file line number Diff line number Diff line change
@@ -36,7 +36,7 @@ public static function id()
}

if (self::$version === null) {
$version = new SebastianBergmann\Version('4.6.7', dirname(dirname(__DIR__)));
$version = new SebastianBergmann\Version('4.6.8', dirname(dirname(__DIR__)));
self::$version = $version->getVersion();
}