Browse Source

Pad headers lines in CHANGELOG.

[ci skip]
Daniele Alessandri 11 years ago
parent
commit
ac34983635
1 changed files with 20 additions and 20 deletions
  1. 20 20
      CHANGELOG.md

+ 20 - 20
CHANGELOG.md

@@ -1,5 +1,5 @@
 v0.9.0 (201x-xx-xx)
-===============================================================================
+================================================================================
 
 - The default server profile for Redis is now `2.8`.
 
@@ -79,7 +79,7 @@ v0.9.0 (201x-xx-xx)
 
 
 v0.8.5 (2013-xx-xx)
-===============================================================================
+================================================================================
 
 - Added `2.8` in the server profiles aliases list for Redis 2.8. `2.6` is still
   the default server profile and `dev` now targets Redis 3.0.
@@ -119,7 +119,7 @@ v0.8.5 (2013-xx-xx)
 
 
 v0.8.4 (2013-07-27)
-===============================================================================
+================================================================================
 
 - Added `DUMP` and `RESTORE` to the server profile for Redis 2.6.
 
@@ -143,7 +143,7 @@ v0.8.4 (2013-07-27)
 
 
 v0.8.3 (2013-02-18)
-===============================================================================
+================================================================================
 
 - Added `CLIENT SETNAME` and `CLIENT GETNAME` (ISSUE #102).
 
@@ -172,7 +172,7 @@ v0.8.3 (2013-02-18)
 
 
 v0.8.2 (2013-02-03)
-===============================================================================
+================================================================================
 
 - Added `Predis\Session\SessionHandler` to make it easy to store PHP sessions
   on Redis using Predis. Please note that this class needs either PHP >= 5.4.0
@@ -187,7 +187,7 @@ v0.8.2 (2013-02-03)
 
 
 v0.8.1 (2013-01-19)
-===============================================================================
+================================================================================
 
 - The `connections` client option can now accept a callable object returning
   an instance of `Predis\Connection\ConnectionFactoryInterface`.
@@ -219,7 +219,7 @@ v0.8.1 (2013-01-19)
 
 
 v0.8.0 (2012-10-23)
-===============================================================================
+================================================================================
 
 - The default server profile for Redis is now `2.6`.
 
@@ -284,7 +284,7 @@ v0.8.0 (2012-10-23)
 
 
 v0.7.3 (2012-06-01)
-===============================================================================
+================================================================================
 
 - New commands available in the Redis v2.6 profile (dev): `BITOP`, `BITCOUNT`.
 
@@ -306,7 +306,7 @@ v0.7.3 (2012-06-01)
 
 
 v0.7.2 (2012-04-01)
-===============================================================================
+================================================================================
 
 - Added `2.6` in the server profiles aliases list for the upcoming Redis 2.6.
   `2.4` is still the default server profile. `dev` now targets Redis 2.8.
@@ -324,7 +324,7 @@ v0.7.2 (2012-04-01)
 
 
 v0.7.1 (2011-12-27)
-===============================================================================
+================================================================================
 
 - The PEAR channel on PearHub has been deprecated in favour of `pear.nrk.io`.
 
@@ -343,7 +343,7 @@ v0.7.1 (2011-12-27)
 
 
 v0.7.0 (2011-12-11)
-===============================================================================
+================================================================================
 
 - Predis now adheres to the PSR-0 standard which means that there is no more a
   single file holding all the classes of the library, but multiple files (one
@@ -417,7 +417,7 @@ v0.7.0 (2011-12-11)
 
 
 v0.6.6 (2011-04-01)
-===============================================================================
+================================================================================
 
 - Switched to Redis 2.2 as the default server profile (there are no changes
   that would break compatibility with previous releases). Long command names
@@ -456,7 +456,7 @@ v0.6.6 (2011-04-01)
 
 
 v0.6.5 (2011-02-12)
-===============================================================================
+================================================================================
 
 - __FIX__: due to an untested internal change introduced in v0.6.4, a wrong
   handling of bulk reads of zero-length values was producing protocol
@@ -464,7 +464,7 @@ v0.6.5 (2011-02-12)
 
 
 v0.6.4 (2011-02-12)
-===============================================================================
+================================================================================
 
 - Various performance improvements (15% ~ 25%) especially when dealing with
   long multibulk replies or when using clustered connections.
@@ -478,7 +478,7 @@ v0.6.4 (2011-02-12)
 
 
 v0.6.3 (2011-01-01)
-===============================================================================
+================================================================================
 
 - New commands available in the Redis v2.2 profile (dev):
   - Strings: `SETRANGE`, `GETRANGE`, `SETBIT`, `GETBIT`
@@ -492,7 +492,7 @@ v0.6.3 (2011-01-01)
 
 
 v0.6.2 (2010-11-28)
-===============================================================================
+================================================================================
 
 - Minor internal improvements and clean ups.
 
@@ -517,7 +517,7 @@ v0.6.2 (2010-11-28)
 
 
 v0.6.1 (2010-07-11)
-===============================================================================
+================================================================================
 
 - Minor internal improvements and clean ups.
 
@@ -559,7 +559,7 @@ v0.6.1 (2010-07-11)
 
 
 v0.6.0 (2010-05-24)
-===============================================================================
+================================================================================
 
 - Switched to the new multi-bulk request protocol for all of the commands
   in the Redis 1.2 and Redis 2.0 profiles. Inline and bulk requests are now
@@ -674,7 +674,7 @@ v0.6.0 (2010-05-24)
 
 
 v0.5.1 (2010-01-23)
-===============================================================================
+================================================================================
 
 * `RPOPLPUSH` has been changed from bulk command to inline command in Redis
   1.2.1, so `ListPopLastPushHead` now extends `InlineCommand`. The old behavior
@@ -689,5 +689,5 @@ v0.5.1 (2010-01-23)
 
 
 v0.5.0 (2010-01-09)
-===============================================================================
+================================================================================
 * First versioned release of Predis