Skip to content

Commit d0b6d1b

Browse files
committed
v102
1 parent d2e7caf commit d0b6d1b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Latest Stable Version](https://poser.pugx.org/cheprasov/php-redis-lock/v/stable)](https://packagist.org/packages/cheprasov/php-redis-lock)
33
[![Total Downloads](https://poser.pugx.org/cheprasov/php-redis-lock/downloads)](https://packagist.org/packages/cheprasov/php-redis-lock)
44

5-
# RedisLock v1.0.1 for PHP >= 5.5
5+
# RedisLock v1.0.2 for PHP >= 5.5
66

77
## About
88
RedisLock for PHP is a synchronization mechanism for enforcing limits on access to a resource in an environment where there are many threads of execution. A lock is designed to enforce a mutual exclusion concurrency control policy. Based on [redis](http://redis.io/).

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cheprasov/php-redis-lock",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "RedisLock for PHP is a synchronization mechanism for enforcing limits on access to a resource in an environment where there are many threads of execution. A lock is designed to enforce a mutual exclusion concurrency control policy.",
55
"homepage": "http://github.com/cheprasov/php-redis-lock",
66
"minimum-stability": "stable",

src/RedisLock/RedisLock.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
class RedisLock implements LockInterface {
2121

22-
const VERSION = '1.0.1';
22+
const VERSION = '1.0.2';
2323

2424
/**
2525
* @deprecated

0 commit comments

Comments
 (0)