Skip to content

Commit

Permalink
chore(release): 7.3.0 [skip ci]
Browse files Browse the repository at this point in the history
## [7.3.0](v7.2.2...v7.3.0) (2022-06-16)

### ✨ New Features

* add order status webhook and add shipments to order ([#414](#414)) ([ae89f92](ae89f92))
* add weight validation to consignment ([#411](#411)) ([d2cf46e](d2cf46e))

### 🐛 Bug Fixes

* adjust instabox shipment for ConsignmentAdapter usage ([#406](#406)) ([ab0e6c7](ab0e6c7))
* restore deprecated constant ([#416](#416)) ([ffffa0d](ffffa0d))
  • Loading branch information
semantic-release-bot committed Jun 16, 2022
1 parent bc5b3c7 commit f884e3a
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 41 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [7.3.0](https://github.com/myparcelnl/sdk/compare/v7.2.2...v7.3.0) (2022-06-16)


### :sparkles: New Features

* add order status webhook and add shipments to order ([#414](https://github.com/myparcelnl/sdk/issues/414)) ([ae89f92](https://github.com/myparcelnl/sdk/commit/ae89f92b4063b4f08da40b199c121732a38fce60))
* add weight validation to consignment ([#411](https://github.com/myparcelnl/sdk/issues/411)) ([d2cf46e](https://github.com/myparcelnl/sdk/commit/d2cf46eeb12d9d4d658ad61fd73e23d2041754f5))


### :bug: Bug Fixes

* adjust instabox shipment for ConsignmentAdapter usage ([#406](https://github.com/myparcelnl/sdk/issues/406)) ([ab0e6c7](https://github.com/myparcelnl/sdk/commit/ab0e6c756b5dd46958e476edc3619e138df56ac5))
* restore deprecated constant ([#416](https://github.com/myparcelnl/sdk/issues/416)) ([ffffa0d](https://github.com/myparcelnl/sdk/commit/ffffa0d2360809bf91f4bd9d2fb1669b9c37d71a))

### [7.2.2](https://github.com/myparcelnl/sdk/compare/v7.2.1...v7.2.2) (2022-04-15)


Expand Down
82 changes: 41 additions & 41 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,45 @@
{
"name": "myparcelnl/sdk",
"version": "7.2.2",
"description": "This package is designed to send and receive data from MyParcel by means of an API.",
"keywords": [
"MyParcel",
"Flespakket",
"PostNL"
],
"homepage": "https://myparcelnl.github.io/sdk",
"license": "MIT",
"authors": [
{
"name": "Reindert Vetter",
"email": "[email protected]"
"name": "myparcelnl/sdk",
"version": "7.3.0",
"description": "This package is designed to send and receive data from MyParcel by means of an API.",
"keywords": [
"MyParcel",
"Flespakket",
"PostNL"
],
"homepage": "https://myparcelnl.github.io/sdk",
"license": "MIT",
"authors": [
{
"name": "Reindert Vetter",
"email": "[email protected]"
},
{
"name": "Richard Perdaan",
"email": "[email protected]"
},
{
"name": "Edie Lemoine",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1.0"
},
{
"name": "Richard Perdaan",
"email": "[email protected]"
"require-dev": {
"fakerphp/faker": "^v1.16.0",
"phpunit/phpunit": "^7.5.20",
"psr/container": "~1.0.0"
},
{
"name": "Edie Lemoine",
"email": "[email protected]"
}
],
"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 f884e3a

Please sign in to comment.