Skip to content

Commit

Permalink
chore(release): 6.1.0 [skip ci]
Browse files Browse the repository at this point in the history
## [6.1.0](v6.0.0...v6.1.0) (2021-12-31)

### 🐛 Bug Fixes

* **consignment:** only validate delivery date if needed ([#364](#364)) ([2f34c53](2f34c53))
* **pps:** export delivery options ([#360](#360)) ([c333346](c333346))
* **pps:** export order date with a timestamp ([09eca9c](09eca9c))
* **pps:** export Rest of World orders ([#358](#358)) ([97da682](97da682))

### ✨ New Features

* **consignment:** make email nullable ([#373](#373)) ([867b54a](867b54a))
* **pps:** allow setting of label description ([289d0d1](289d0d1))
* **recipient:** add region property ([#367](#367)) ([32a1d38](32a1d38))
* **recipient:** add setFullStreet ([#349](#349)) ([9f40418](9f40418))
  • Loading branch information
semantic-release-bot committed Dec 31, 2021
1 parent fe1c9e0 commit 28bc0c5
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 47 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [6.1.0](https://github.com/myparcelnl/sdk/compare/v6.0.0...v6.1.0) (2021-12-31)


### :bug: Bug Fixes

* **consignment:** only validate delivery date if needed ([#364](https://github.com/myparcelnl/sdk/issues/364)) ([2f34c53](https://github.com/myparcelnl/sdk/commit/2f34c53cfa2d7528321f55aadbdde9f516094416))
* **pps:** export delivery options ([#360](https://github.com/myparcelnl/sdk/issues/360)) ([c333346](https://github.com/myparcelnl/sdk/commit/c333346f2c3e59b7f0e08782dcd1974d11d6ca13))
* **pps:** export order date with a timestamp ([09eca9c](https://github.com/myparcelnl/sdk/commit/09eca9c668d5ce64fba30f61fde393e85b7fe331))
* **pps:** export Rest of World orders ([#358](https://github.com/myparcelnl/sdk/issues/358)) ([97da682](https://github.com/myparcelnl/sdk/commit/97da682f2b7528ba49b9edd6bb64307c3b49df6f))


### :sparkles: New Features

* **consignment:** make email nullable ([#373](https://github.com/myparcelnl/sdk/issues/373)) ([867b54a](https://github.com/myparcelnl/sdk/commit/867b54a69b8a8ad1d37357565af20174b4915725))
* **pps:** allow setting of label description ([289d0d1](https://github.com/myparcelnl/sdk/commit/289d0d1e830adf8d476b2aa1465dd156f2eca1fa))
* **recipient:** add region property ([#367](https://github.com/myparcelnl/sdk/issues/367)) ([32a1d38](https://github.com/myparcelnl/sdk/commit/32a1d38bbd8bce4798cf6e9682bb52922c380258))
* **recipient:** add setFullStreet ([#349](https://github.com/myparcelnl/sdk/issues/349)) ([9f40418](https://github.com/myparcelnl/sdk/commit/9f40418d2a52b8d7d984f06858c0e78d55c5fc0d))
94 changes: 47 additions & 47 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
{
"name": "myparcelnl/sdk",
"version": "v6.0.0",
"description": "This package is designed to send and receive data from MyParcel by means of an API.",
"homepage": "https://www.myparcel.nl",
"keywords": [
"MyParcel",
"Flespakket",
"PostNL"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Reindert Vetter",
"email": "[email protected]",
"homepage": "https://www.myparcel.nl",
"role": "Developer"
"name": "myparcelnl/sdk",
"version": "6.1.0",
"description": "This package is designed to send and receive data from MyParcel by means of an API.",
"homepage": "https://www.myparcel.nl",
"keywords": [
"MyParcel",
"Flespakket",
"PostNL"
],
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Reindert Vetter",
"email": "[email protected]",
"homepage": "https://www.myparcel.nl",
"role": "Developer"
},
{
"name": "Richard Perdaan",
"email": "[email protected]",
"homepage": "https://www.myparcel.nl",
"role": "Developer"
},
{
"name": "Edie Lemoine",
"email": "[email protected]",
"homepage": "https://www.myparcel.nl",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0"
},
{
"name": "Richard Perdaan",
"email": "[email protected]",
"homepage": "https://www.myparcel.nl",
"role": "Developer"
"require-dev": {
"fakerphp/faker": "^v1.16.0",
"phpunit/phpunit": "^7.5.20",
"psr/container": "~1.0.0"
},
{
"name": "Edie Lemoine",
"email": "[email protected]",
"homepage": "https://www.myparcel.nl",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0"
},
"require-dev": {
"fakerphp/faker": "^v1.16.0",
"phpunit/phpunit": "^7.5.20",
"psr/container": "~1.0.0"
},
"autoload": {
"psr-4": {
"MyParcelNL\\Sdk\\src\\": "src",
"MyParcelNL\\Sdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MyParcelNL\\Sdk\\Test\\": "test"
"autoload": {
"psr-4": {
"MyParcelNL\\Sdk\\src\\": "src",
"MyParcelNL\\Sdk\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"MyParcelNL\\Sdk\\Test\\": "test"
}
}
}
}
}

0 comments on commit 28bc0c5

Please sign in to comment.