diff --git a/CHANGELOG.md b/CHANGELOG.md index c80308e..a62f948 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,47 +4,24 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## 5.0.0 - 2019-11-10 -### Added -- Nothing +## 5.0.1 - 2020-03-05 +### Changed +- Changed company name references. +## 5.0.0 - 2019-11-10 ### Changed - Unified namespace conventions used across packages -### Deprecated -- Nothing - -### Removed -- Nothing - -### Fixed -- Nothing - -### Security -- Nothing - ## 4.0.0 - 2019-10-10 ### Added - Command interface and implementation. - Factories for Requests and Commands. ### Changed -- Request and response methods return types to simplify implementing the +- Request and response methods return types to simplify implementing the objects in applications. - Simplified the README for easier maintenance. -### Deprecated -- Nothing - -### Removed -- Nothing - -### Fixed -- Nothing - -### Security -- Nothing - ## 3.0.0 - 2019-05-16 ### Added - MethodEnum to make a more strict definition of the available methods. @@ -52,18 +29,9 @@ objects in applications. ### Changed - Order of parameters for the Request object constructor. -### Deprecated -- Nothing - ### Removed - RequestInterface method definitions. -### Fixed -- Nothing - -### Security -- Nothing - ## 2.0.0 - 2019-03-22 ### Added - Added parameters to the Request interface and implementation. @@ -72,18 +40,9 @@ objects in applications. - Order of constructor parameters - Default value of the request method. -### Deprecated -- Nothing - ### Removed - SearchCriteria dependency by expecting GET parameters as an associative array. -### Fixed -- Nothing - -### Security -- Nothing - ## 1.0.0 - 2019-03-05 ### Added - Initial implementation of ulrack/transaction @@ -94,22 +53,8 @@ objects in applications. - `Ulrack\Transaction\Exception\HeaderNotFoundException` - Unit Tests -### Changed -- Nothing - -### Deprecated -- Nothing - -### Removed -- Nothing - -### Fixed -- Nothing - -### Security -- Nothing - -[Unreleased]: https://github.com/ulrack/transaction/compare/5.0.0...HEAD +[Unreleased]: https://github.com/ulrack/transaction/compare/5.0.1...HEAD +[5.0.1]: https://github.com/ulrack/transaction/compare/5.0.0...5.0.1 [5.0.0]: https://github.com/ulrack/transaction/compare/4.0.0...5.0.0 [4.0.0]: https://github.com/ulrack/transaction/compare/3.0.0...4.0.0 [3.0.0]: https://github.com/ulrack/transaction/compare/2.0.0...3.0.0 diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 040dd3e..6dcd974 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -55,7 +55,7 @@ further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be -reported by contacting the project team at info@jyxon.com. All +reported by contacting the project team at info@grizzit.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. diff --git a/LICENSE b/LICENSE index 8d90aa2..e1759a8 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2019 Jyxon +Copyright (c) 2019 GrizzIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 5264db1..343c5f0 100644 --- a/README.md +++ b/README.md @@ -19,23 +19,23 @@ composer require ulrack/transaction ### [Request](src/Component/Request.php) A simple data access object for defining incoming web requests. -This instance requires one of the [MethodEnum](src/Common/MethodEnum.php) +This instance requires one of the [MethodEnum](src/Common/MethodEnum.php) options to be passed. ### [Response](src/Component/Response.php) -A simple data access object for defining outgoing web responses. +A simple data access object for defining outgoing web responses. ### [Command](src/Component/Command.php) -A simple data access object for defining incoming CLI instructions. +A simple data access object for defining incoming CLI instructions. ### Factories #### [CommandFactory](src/Factory/CommandFactory.php) A static factory which creates [Commands](src/Component/Command.php) based on -provided arguments. +provided arguments. The following example will generate a command object. @@ -52,7 +52,7 @@ $subject = CommandFactory::create($_SERVER['argv']); #### [RequestFactory](src/Factory/RequestFactory.php) A static factory which creates [Requests](src/Transaction/Request.php) based on -provided arguments. +provided arguments. The following example will generate a request object. @@ -76,7 +76,7 @@ Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE_OF_CONDUCT](CODE_OF_CONDUCT ## MIT License -Copyright (c) 2019 Jyxon +Copyright (c) 2019 GrizzIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/Common/CommandInterface.php b/src/Common/CommandInterface.php index 6cb4e3d..f0cd6d4 100644 --- a/src/Common/CommandInterface.php +++ b/src/Common/CommandInterface.php @@ -1,6 +1,6 @@