Skip to content

Commit c7f3947

Browse files
committedJan 9, 2020
chore: Bump version
Signed-off-by: Bruno Gaspar <[email protected]>
1 parent 9069406 commit c7f3947

File tree

7 files changed

+20
-13
lines changed

7 files changed

+20
-13
lines changed
 

‎CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
### v12.0.0 - TBA
4+
5+
`REVISED`
6+
7+
- Support for Laravel 7.0+
8+
39
### v11.0.0 - 2019-08-30
410

511
`REVISED`

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The BSD 3-Clause License
2-
Copyright (c) 2011-2019, Cartalyst LLC
2+
Copyright (c) 2011-2020, Cartalyst LLC
33
All rights reserved.
44

55
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

‎README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,15 @@
55
[![Latest Version on Packagist][icon-version]][link-packagist]
66
[![Total Downloads][icon-downloads]][link-packagist]
77

8-
Laravel 6 integration for the [Cartalyst Stripe](https://cartalyst.com/manual/stripe/2.0) package.
8+
Laravel 7 integration for the [Cartalyst Stripe](https://cartalyst.com/manual/stripe/2.0) package.
99

1010
An open source package by [Cartalyst](https://cartalyst.com), code well, rock on!
1111

1212
## Version Matrix
1313

1414
Version | Laravel | PHP Version
1515
------- | --------- | ------------
16+
12.x | 7.x | >= 7.2.5
1617
11.x | 6.x | >= 7.2.0
1718
10.x | 5.8 | >= 7.1.3
1819
9.x | 5.7 | >= 7.1.3
@@ -51,7 +52,7 @@ This software is released under the [BSD 3-Clause](LICENSE) License.
5152
[link-license]: https://opensource.org/licenses/MIT
5253
[link-packagist]: https://packagist.org/packages/cartalyst/stripe-laravel
5354

54-
[icon-travis]: https://travis-ci.org/cartalyst/stripe-laravel.svg?branch=11.0
55+
[icon-travis]: https://travis-ci.org/cartalyst/stripe-laravel.svg?branch=12.x
5556
[icon-license]: https://poser.pugx.org/cartalyst/stripe-laravel/license
5657
[icon-version]: https://poser.pugx.org/cartalyst/stripe-laravel/version
5758
[icon-downloads]: https://poser.pugx.org/cartalyst/stripe-laravel/downloads

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"extra": {
4343
"component": "implementation",
4444
"branch-alias": {
45-
"dev-master": "11.0.x-dev"
45+
"dev-master": "12.0.x-dev"
4646
},
4747
"laravel": {
4848
"providers": [

‎src/Facades/Stripe.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Stripe Laravel
14-
* @version 11.0.0
14+
* @version 12.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2019, Cartalyst LLC
18-
* @link http://cartalyst.com
17+
* @copyright (c) 2011-2020, Cartalyst LLC
18+
* @link https://cartalyst.com
1919
*/
2020

2121
namespace Cartalyst\Stripe\Laravel\Facades;

‎src/StripeServiceProvider.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Stripe Laravel
14-
* @version 11.0.0
14+
* @version 12.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2019, Cartalyst LLC
18-
* @link http://cartalyst.com
17+
* @copyright (c) 2011-2020, Cartalyst LLC
18+
* @link https://cartalyst.com
1919
*/
2020

2121
namespace Cartalyst\Stripe\Laravel;

‎tests/FacadeTest.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
* bundled with this package in the LICENSE file.
1212
*
1313
* @package Stripe Laravel
14-
* @version 11.0.0
14+
* @version 12.0.0
1515
* @author Cartalyst LLC
1616
* @license BSD License (3-clause)
17-
* @copyright (c) 2011-2019, Cartalyst LLC
18-
* @link http://cartalyst.com
17+
* @copyright (c) 2011-2020, Cartalyst LLC
18+
* @link https://cartalyst.com
1919
*/
2020

2121
namespace Cartalyst\Stripe\Tests;

0 commit comments

Comments
 (0)