Skip to content

Commit

Permalink
Prepare for 11.14
Browse files Browse the repository at this point in the history
  • Loading branch information
GrahamCampbell committed Dec 3, 2023
1 parent 6674270 commit 3ddf538
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [11.14.0] - UPCOMING

TBC

## [11.13.0] - 2023-12-03

* Add support for `symfony/options-resolver:^7.0`
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This version supports [PHP](https://php.net) 7.4-8.3. To get started, simply req
### Standard Installation

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

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

```bash
$ composer require "graham-campbell/gitlab:^7.4"
$ composer require "graham-campbell/gitlab:^7.5"
```

#### Symfony:

```bash
$ composer require "zeichen32/gitlabapibundle:^6.0" \
"symfony/http-client:^6.3" "nyholm/psr7:^1.8"
$ composer require "zeichen32/gitlabapibundle:^6.1"
```

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).
Expand Down
2 changes: 1 addition & 1 deletion src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class Client
*
* @var string
*/
private const USER_AGENT = 'gitlab-php-api-client/11.13';
private const USER_AGENT = 'gitlab-php-api-client/11.14';

/**
* The HTTP client builder.
Expand Down

0 comments on commit 3ddf538

Please sign in to comment.