Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5419cc9

Browse files
Prepare for 6.1.0 GA
1 parent 52e69ed commit 5419cc9

File tree

3 files changed

+59
-9
lines changed

3 files changed

+59
-9
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,24 @@ All changes to phpredis will be documented in this file.
55
We're basing this format on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [6.1.0RC2] - 2024-09-23 ([Github](https://github.com/phpredis/phpredis/releases/6.1.0RC2), [PECL](https://pecl.php.net/package/redis/6.1.0RC2))
8+
## [6.1.0] - 2024-10-04 ([Github](https://github.com/phpredis/phpredis/releases/6.1.0), [PECL](https://pecl.php.net/package/redis/6.1.0))
9+
10+
**NOTE**: There were no changes to C code between 6.1.0RC2 and 6.1.0.
11+
12+
### Documentation
13+
14+
- Update package.xml to make it clearer that we support many key-value stores
15+
[52e69ede](https://github.com/phpredis/phpredis/commit/52e69ede)
16+
([Remi Collet](https://github.com/remicollet))
17+
- Fix redis.io urls
18+
[0bae4bb0](https://github.com/phpredis/phpredis/commit/0bae4bb0)
19+
([Vincent Langlet](https://github.com/VincentLanglet))
20+
21+
### Tests/CI
22+
23+
- Fix 2 tests with redis 6.2
24+
[cc1be322](https://github.com/phpredis/phpredis/commit/cc1be322)
25+
([Remi Collet](https://github.com/remicollet))
926

1027
### Sponsors :sparkling_heart:
1128

@@ -41,6 +58,10 @@ and PhpRedis adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
4158
[@tillkruss](https://github.com/tillkruss),
4259
[@deiga](https://github.com/deiga),
4360
[@tutuna](https://github.com/tutuna)
61+
[@VincentLanglet](https://github.com/VincentLanglet)
62+
63+
64+
## [6.1.0RC2] - 2024-09-23 ([Github](https://github.com/phpredis/phpredis/releases/6.1.0RC2), [PECL](https://pecl.php.net/package/redis/6.1.0RC2))
4465

4566
### Fixed
4667

package.xml

Lines changed: 36 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ http://pear.php.net/dtd/package-2.0.xsd">
2222
<email>[email protected]</email>
2323
<active>yes</active>
2424
</lead>
25-
<date>2024-09-23</date>
25+
<date>2024-10-04</date>
2626
<version>
27-
<release>6.1.0RC2</release>
27+
<release>6.1.0</release>
2828
<api>6.0.0</api>
2929
</version>
3030
<stability>
31-
<release>beta</release>
32-
<api>beta</api>
31+
<release>stable</release>
32+
<api>stable</api>
3333
</stability>
3434
<license uri="http://www.php.net/license">PHP</license>
3535
<notes>
@@ -41,6 +41,20 @@ http://pear.php.net/dtd/package-2.0.xsd">
4141
Ty Karok - https://github.com/karock
4242
Object Cache Pro for WordPress - https://objectcache.pro
4343

44+
--- 6.1.0 ---
45+
46+
NOTE: There were no changes to C code between 6.1.0RC2 and 6.1.0
47+
48+
Documentation:
49+
50+
* Update package.xml to make it clearer that we support many key-value stores
51+
[52e69ede] (Remi Collet)
52+
* Fix redis.io urls [0bae4bb0] (Vincent Langlet)
53+
54+
Tests/CI:
55+
56+
* Fix 2 tests with redis 6.2 [cc1be322] (Remi Collet)
57+
4458
--- 6.1.0RC2 ---
4559

4660
Fixed:
@@ -253,9 +267,9 @@ http://pear.php.net/dtd/package-2.0.xsd">
253267
</extsrcrelease>
254268
<changelog>
255269
<release>
256-
<stability><release>beta</release><api>beta</api></stability>
257-
<version><release>6.1.0RC2</release><api>6.0.0</api></version>
258-
<date>2024-09-23</date>
270+
<stability><release>stable</release><api>stable</api></stability>
271+
<version><release>6.1.0</release><api>6.0.0</api></version>
272+
<date>2024-10-04</date>
259273
<notes>
260274
--- Sponsors ---
261275

@@ -265,6 +279,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
265279
Ty Karok - https://github.com/karock
266280
Object Cache Pro for WordPress - https://objectcache.pro
267281

282+
--- 6.1.0 ---
283+
284+
NOTE: There were no changes to C code between 6.1.0RC2 and 6.1.0
285+
286+
Documentation:
287+
288+
* Update package.xml to make it clearer that we support many key-value stores
289+
[52e69ede] (Remi Collet)
290+
* Fix redis.io urls [0bae4bb0] (Vincent Langlet)
291+
292+
Tests/CI:
293+
294+
* Fix 2 tests with redis 6.2 [cc1be322] (Remi Collet)
295+
296+
268297
--- 6.1.0RC2 ---
269298

270299
Fixed:

php_redis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#define PHP_REDIS_H
2424

2525
/* phpredis version */
26-
#define PHP_REDIS_VERSION "6.1.0RC2"
26+
#define PHP_REDIS_VERSION "6.1.0"
2727

2828
/* For convenience we store the salt as a printable hex string which requires 2
2929
* characters per byte + 1 for the NULL terminator */

0 commit comments

Comments
 (0)