Skip to content

Commit 3ddf538

Browse files
Prepare for 11.14
1 parent 6674270 commit 3ddf538

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG.md

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

8+
## [11.14.0] - UPCOMING
9+
10+
TBC
11+
812
## [11.13.0] - 2023-12-03
913

1014
* Add support for `symfony/options-resolver:^7.0`

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This version supports [PHP](https://php.net) 7.4-8.3. To get started, simply req
2828
### Standard Installation
2929

3030
```bash
31-
$ composer require "m4tthumphrey/php-gitlab-api:^11.13" \
31+
$ composer require "m4tthumphrey/php-gitlab-api:^11.14" \
3232
"guzzlehttp/guzzle:^7.8" "http-interop/http-factory-guzzle:^1.2"
3333
```
3434

@@ -37,14 +37,13 @@ $ composer require "m4tthumphrey/php-gitlab-api:^11.13" \
3737
#### Laravel:
3838

3939
```bash
40-
$ composer require "graham-campbell/gitlab:^7.4"
40+
$ composer require "graham-campbell/gitlab:^7.5"
4141
```
4242

4343
#### Symfony:
4444

4545
```bash
46-
$ composer require "zeichen32/gitlabapibundle:^6.0" \
47-
"symfony/http-client:^6.3" "nyholm/psr7:^1.8"
46+
$ composer require "zeichen32/gitlabapibundle:^6.1"
4847
```
4948

5049
We are decoupled from any HTTP messaging client by using [PSR-7](https://www.php-fig.org/psr/psr-7/), [PSR-17](https://www.php-fig.org/psr/psr-17/), [PSR-18](https://www.php-fig.org/psr/psr-18/), and [HTTPlug](https://httplug.io/). You can visit [HTTPlug for library users](https://docs.php-http.org/en/latest/httplug/users.html) to get more information about installing HTTPlug related packages. The framework integration [graham-campbell/gitlab](https://github.com/GrahamCampbell/Laravel-GitLab) is by [Graham Campbell](https://github.com/GrahamCampbell) and [zeichen32/gitlabapibundle](https://github.com/Zeichen32/GitLabApiBundle) is by [Jens Averkamp](https://github.com/Zeichen32).

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ class Client
100100
*
101101
* @var string
102102
*/
103-
private const USER_AGENT = 'gitlab-php-api-client/11.13';
103+
private const USER_AGENT = 'gitlab-php-api-client/11.14';
104104

105105
/**
106106
* The HTTP client builder.

0 commit comments

Comments
 (0)