From 7906f5a5dd530f7a94b5749d8a017518cbe5c0fa Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Tue, 19 Mar 2024 18:14:08 +0000 Subject: [PATCH] Release 12.6.0 --- CHANGELOG.md | 5 +++++ README.md | 6 +++--- composer.json | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f42864f..76684c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ CHANGE LOG ========== +## V12.6 (19/03/2024) + +* Require knplabs/github-api 3.14 + + ## V12.5 (17/03/2024) * Added Laravel 11 support diff --git a/README.md b/README.md index 22ccd22..5179c71 100644 --- a/README.md +++ b/README.md @@ -25,12 +25,12 @@ This version requires [PHP](https://www.php.net/) 7.4-8.3 and supports [Laravel] | 9.8 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | :x: | | 10.6 | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :x: | :x: | | 11.0 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :x: | :x: | -| 12.5 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | +| 12.6 | :x: | :x: | :x: | :x: | :x: | :x: | :white_check_mark: | :white_check_mark: | :white_check_mark: | :white_check_mark: | To get the latest version, simply require the project using [Composer](https://getcomposer.org/): ```bash -$ composer require "graham-campbell/github:^12.5" +$ composer require "graham-campbell/github:^12.6" ``` Once installed, if you are not using automatic package discovery, then you need to register the `GrahamCampbell\GitHub\GitHubServiceProvider` service provider in your `config/app.php`. @@ -154,7 +154,7 @@ class Foo app(Foo::class)->bar(); ``` -For more information on how to use the `Github\Client` class we are calling behind the scenes here, check out the docs at https://github.com/KnpLabs/php-github-api/tree/v3.13.0/doc, and the manager class at https://github.com/GrahamCampbell/Laravel-Manager#usage. +For more information on how to use the `Github\Client` class we are calling behind the scenes here, check out the docs at https://github.com/KnpLabs/php-github-api/tree/v3.14.0/doc, and the manager class at https://github.com/GrahamCampbell/Laravel-Manager#usage. ##### Further Information diff --git a/composer.json b/composer.json index 28492e2..594fcab 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "guzzlehttp/psr7": "^2.6.2", "illuminate/contracts": "^8.75 || ^9.0 || ^10.0 || ^11.0", "illuminate/support": "^8.75 || ^9.0 || ^10.0 || ^11.0", - "knplabs/github-api": "3.13.*", + "knplabs/github-api": "3.14.*", "lcobucci/jwt": "^4.3 || ^5.2", "symfony/cache": "^5.4 || ^6.0 || ^7.0" },