Skip to content

Commit

Permalink
Prepare release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
exileed committed Jan 22, 2021
1 parent 76b033c commit 65213d1
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 39 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php: [ 73, 74 ]
php: [ 73, 74, 80 ]
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
31 changes: 0 additions & 31 deletions .scrutinizer.yml

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) princip
### Security
- Nothing

## 1.1.0 - 2021-01-22
### Added
- Support php 8.0

### Changed
- Migrate to `github action`

## 0.1.0 - 2020-02-13

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE.md)
[![Build Status][ico-github-actions]][link-github-actions]
[![Coverage Status][ico-scrutinizer]][link-scrutinizer]
[![Coverage Status][ico-styleci]][link-styleci]
[![Quality Score][ico-code-quality]][link-code-quality]
[![Total Downloads][ico-downloads]][link-downloads]

Expand Down Expand Up @@ -58,13 +58,14 @@ The MIT License (MIT). Please see [License File](LICENSE.md) for more informatio
[ico-version]: https://img.shields.io/packagist/v/exileed/rocketchat-monolog.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
[ico-github-actions]: https://img.shields.io/github/workflow/status/exileed/rocketchat-monolog/test
[ico-scrutinizer]: https://img.shields.io/scrutinizer/coverage/g/exileed/rocketchat-monolog.svg?style=flat-square
[ico-styleci]: https://styleci.io/repos/205563986/shield
[ico-code-quality]: https://img.shields.io/scrutinizer/g/exileed/rocketchat-monolog.svg?style=flat-square
[ico-downloads]: https://img.shields.io/packagist/dt/exileed/rocketchat-monolog.svg?style=flat-square

[link-packagist]: https://packagist.org/packages/exileed/rocketchat-monolog
[link-github-actions]: https://github.com/exileed/rocketchat-monolog/build
[link-scrutinizer]: https://scrutinizer-ci.com/g/exileed/rocketchat-monolog/code-structure
[link-styleci]: https://styleci.io/repos/205563986
[link-code-quality]: https://scrutinizer-ci.com/g/exileed/rocketchat-monolog
[link-downloads]: https://packagist.org/packages/exileed/rocketchat-monolog
[link-contributors]: https://github.com/exileed/rocketchat-monolog/graphs/contributors
[link-author]: https://github.com/exileed
6 changes: 4 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
"description": "RocketChat Monolog Handler",
"keywords": [
"exileed",
"rocketchat",
"monolog-handler",
"rocketchat-monolog"
],
"homepage": "https://github.com/exileed/rocketchat-monolog",
Expand All @@ -16,7 +18,7 @@
}
],
"require": {
"php" : "~7.3",
"php" : "~7.3 || 8.0",
"monolog/monolog": "^2.0",
"guzzlehttp/guzzle": "^6 || ^7"
},
Expand All @@ -41,7 +43,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "0.2-dev"
"dev-master": "1.x-dev"
}
},
"config": {
Expand Down
1 change: 0 additions & 1 deletion src/RocketChatHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
*/
class RocketChatHandler extends AbstractProcessingHandler
{

/**
* Colors for a given log level.
*
Expand Down
1 change: 0 additions & 1 deletion tests/RocketChatHandlerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

class RocketChatHandlerTest extends TestCase
{

public function testOkResponse()
{
$mock = new MockHandler(
Expand Down

0 comments on commit 65213d1

Please sign in to comment.