Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
aryelgois committed Mar 8, 2018
2 parents 684ea3c + dde0bdb commit 642b563
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 14 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]


## [4.3.0] - 2018-03-08

### Changed
- Update dependencies:
- [catfan/Medoo]
- [aryelgois/utils]
- ReadOnlyModelException extends `aryelgois\Utils\Exceptions\ReadOnlyException`


## [4.2.0] - 2018-02-25

### Added
Expand Down Expand Up @@ -203,7 +212,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- DatabaseObject.php


[Unreleased]: https://github.com/aryelgois/Medools/compare/v4.2.0...develop
[Unreleased]: https://github.com/aryelgois/Medools/compare/v4.3.0...develop
[4.3.0]: https://github.com/aryelgois/Medools/compare/v4.2.0...v4.3.0
[4.2.0]: https://github.com/aryelgois/Medools/compare/v4.1.1...v4.2.0
[4.1.1]: https://github.com/aryelgois/Medools/compare/v4.1.0...v4.1.1
[4.1.0]: https://github.com/aryelgois/Medools/compare/v4.0.0...v4.1.0
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"require": {
"php": "^7.0",
"aryelgois/utils": "^0.4",
"aryelgois/utils": "^0.5",
"catfan/medoo": "^1.5"
},
"autoload": {
Expand Down
22 changes: 11 additions & 11 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/Exceptions/ReadOnlyModelException.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@

namespace aryelgois\Medools\Exceptions;

use aryelgois\Utils;

/**
* A model is configured as read-only, but tries to change its data
*
* @author Aryel Mota Góis
* @license MIT
* @link https://www.github.com/aryelgois/Medools
*/
class ReadOnlyModelException extends \LogicException
class ReadOnlyModelException extends Utils\Exceptions\ReadOnlyException
{}

0 comments on commit 642b563

Please sign in to comment.