Skip to content

Commit c81adf7

Browse files
Bumped version
1 parent 53f9589 commit c81adf7

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-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+
## [10.4.0] - UPCOMING
9+
10+
[10.4.0]: https://github.com/GitLabPHP/Client/compare/10.3.0...10.4.0
11+
812
## [10.3.0] - 2020-11-27
913

1014
* Support PHP 8.0

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ This version supports [PHP](https://php.net) 7.1-8.0. To get started, simply req
3030
#### PHP 7.1+:
3131

3232
```
33-
$ composer require m4tthumphrey/php-gitlab-api:^10.3 php-http/guzzle6-adapter:^2.0.1 http-interop/http-factory-guzzle:^1.0
33+
$ composer require m4tthumphrey/php-gitlab-api:^10.4 php-http/guzzle6-adapter:^2.0.1 http-interop/http-factory-guzzle:^1.0
3434
```
3535

3636
#### PHP 7.2+:
3737

3838
```
39-
$ composer require m4tthumphrey/php-gitlab-api:^10.3 guzzlehttp/guzzle:^7.0.1 http-interop/http-factory-guzzle:^1.0
39+
$ composer require m4tthumphrey/php-gitlab-api:^10.4 guzzlehttp/guzzle:^7.0.1 http-interop/http-factory-guzzle:^1.0
4040
```
4141

4242
### Framework Integration
4343

4444
#### Laravel 6+:
4545

4646
```
47-
$ composer require graham-campbell/gitlab:^4.3 guzzlehttp/guzzle:^7.0.1 http-interop/http-factory-guzzle:^1.0
47+
$ composer require graham-campbell/gitlab:^4.4 guzzlehttp/guzzle:^7.0.1 http-interop/http-factory-guzzle:^1.0
4848
```
4949

5050
#### Symfony 4:
@@ -109,7 +109,7 @@ $builder->addPlugin($plugin);
109109
$client = new Gitlab\Client($builder);
110110
```
111111

112-
One can read more about HTTPlug plugins [here](https://docs.php-http.org/en/latest/plugins/introduction.html#how-it-works). Take a look around the [API methods](https://github.com/GitLabPHP/Client/tree/10.3/src/Api), and please feel free to report any bugs, noting our [code of conduct](.github/CODE_OF_CONDUCT.md).
112+
One can read more about HTTPlug plugins [here](https://docs.php-http.org/en/latest/plugins/introduction.html#how-it-works). Take a look around the [API methods](https://github.com/GitLabPHP/Client/tree/10.4/src/Api), and please feel free to report any bugs, noting our [code of conduct](.github/CODE_OF_CONDUCT.md).
113113

114114

115115
## Contributing

src/Client.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class Client
7575
*
7676
* @var string
7777
*/
78-
private const USER_AGENT = 'gitlab-php-api-client/10.3';
78+
private const USER_AGENT = 'gitlab-php-api-client/10.4';
7979

8080
/**
8181
* The HTTP client builder.

0 commit comments

Comments
 (0)