Skip to content

Commit b4e084e

Browse files
author
Eremeev Ales
committed
Version 2.0.0, Fixed minimum php version on 7.2.5, pr fixes
1 parent 124504b commit b4e084e

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
8-
7+
## [2.0.0] - 2022-11-21
98
### Added
109
- Php 8 support
1110

11+
### Changed
12+
- Minimum php version now is 7.2.5 because of guzzle requirements
13+
1214
### Fixed
1315
- Fix tests
1416

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
This library provides the base exceptions for the generated clients made by [api-client-generator](https://github.com/DoclerLabs/api-client-generator).
44

5+
[![Latest Stable Version](https://poser.pugx.org/docler-labs/api-client-exception/v/stable)](https://packagist.org/packages/docler-labs/api-client-exception)
56
[![License](https://poser.pugx.org/docler-labs/api-client-exception/license)](https://packagist.org/packages/docler-labs/api-client-exception)
67

78
## Development

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docler-labs/api-client-exception",
3-
"version": "1.0.2",
3+
"version": "2.0.0",
44
"description": "SDK Generator - API Client Exception",
55
"type": "library",
66
"license": "MIT",
@@ -15,7 +15,7 @@
1515
"sort-packages": true
1616
},
1717
"require": {
18-
"php": "^7.2 || ^8.0",
18+
"php": "^7.2.5 || ^8.0",
1919
"guzzlehttp/psr7": "^2.4",
2020
"psr/http-client": "^1.0",
2121
"psr/http-message": "^1.0"

composer.lock

Lines changed: 8 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
55
colors="true"
66
beStrictAboutOutputDuringTests="false"
77
beStrictAboutTestsThatDoNotTestAnything="true"
@@ -17,7 +17,7 @@
1717
<directory suffix=".php">./src</directory>
1818
</include>
1919
<report>
20-
<clover outputFile="build/logs/clover.xml"/>
20+
<text outputFile="php://stdout" showOnlySummary="true"/>
2121
</report>
2222
</coverage>
2323
<testsuites>

0 commit comments

Comments
 (0)