Skip to content

Commit

Permalink
Merge pull request #12 from kodus/1.0.0
Browse files Browse the repository at this point in the history
1.0.0
  • Loading branch information
mindplay-dk authored Aug 15, 2018
2 parents 42e26b4 + 8a71301 commit 1f33848
Show file tree
Hide file tree
Showing 11 changed files with 2,587 additions and 15 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/.idea
/composer.lock
/.*
!.git*
/vendor
/tests/_output
/tests/_support/_generated
Expand Down
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
language: php

php:
- 5.6
- 7.0
- 7.1
- 7.2

before_script:
- 'composer install --prefer-source'
- 'composer update --prefer-source'

before_install:
- sudo apt-get update -qq
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
kodus/mail
==========

[![PHP Version](https://img.shields.io/badge/php-5.6%2B-blue.svg)](https://packagist.org/packages/kodus/mail)
[![PHP Version](https://img.shields.io/badge/php-7.0%2B-blue.svg)](https://packagist.org/packages/kodus/mail)
[![Build Status](https://travis-ci.org/kodus/mail.svg?branch=master)](https://travis-ci.org/kodus/mail)
[![Code Coverage](https://scrutinizer-ci.com/g/kodus/mail/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/kodus/mail/?branch=master)
[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/kodus/mail/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/kodus/mail/?branch=master)
Expand Down
4 changes: 4 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
UPGRADING
=========

## 1.0.0

There are no breaking changes from 0.2.x, but this release requires PHP 7.0 or later.

## 0.1.x to 0.2.x

`Message::getDate()` now returns `DateTimeInterface` - it previously returned a UNIX (integer) timestamp.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">= 5.6",
"php": ">= 7.0",
"psr/log": "^1"
},
"require-dev": {
Expand Down
Loading

0 comments on commit 1f33848

Please sign in to comment.