Skip to content

Commit

Permalink
Prepare for release 2.3.2 (#352)
Browse files Browse the repository at this point in the history
* Style fixes

* Added changelog
  • Loading branch information
Nyholm authored May 16, 2017
1 parent 91f96ba commit 487c1ed
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 14 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.

## 2.3.2

### Fixed

- When parsing an address in `MessageBuilder` we surround the recipient name with double quotes instead of single quotes.

## 2.3.1

### Fixed

- Make sure to reset the `MultipartStreamBuilder` after a stream is built.

## 2.3.0

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/Mailgun/Connection/RestClient.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion src/Mailgun/Lists/OptInHandler.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
4 changes: 2 additions & 2 deletions src/Mailgun/Mailgun.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down Expand Up @@ -70,7 +70,7 @@ class Mailgun
*
* @internal Use Mailgun::configure or Mailgun::create instead.
*/
public /* private */ function __construct(
public function __construct(
$apiKey = null, /* Deprecated, will be removed in 3.0 */
HttpClient $httpClient = null,
$apiEndpoint = 'api.mailgun.net', /* Deprecated, will be removed in 3.0 */
Expand Down
2 changes: 1 addition & 1 deletion src/Mailgun/Messages/BatchMessage.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion src/Mailgun/Messages/MessageBuilder.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion tests/Lists/OptInHandlerTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion tests/MailgunTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion tests/MailgunTestCase.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion tests/Messages/BatchMessageTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion tests/Messages/ComplexMessageTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion tests/Messages/MessageBuilderTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion tests/Messages/StandardMessageTest.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down
2 changes: 1 addition & 1 deletion tests/Mock/Mailgun.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?PHP
<?php

/*
* Copyright (C) 2013-2016 Mailgun
Expand Down

0 comments on commit 487c1ed

Please sign in to comment.