Skip to content

Commit 1ae0ce5

Browse files
committed
Release version 1.1.0
Fix - #1
1 parent ec2068c commit 1ae0ce5

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

README.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,17 @@ A library for using Memcached as a second level distributed cache in Hibernate.
99
* https://github.com/kcarlson/hibernate-memcached
1010

1111
#Versions
12+
13+
## 1.1.0
14+
15+
Memcached client now respects the region timeout property
16+
- [Issue #1](https://github.com/mihaicostin/hibernate-l2-memcached/issues/1)
17+
```xml
18+
<property name="hibernate.memcached.REGION.cacheTimeSeconds">10</property>
19+
```
20+
1221

13-
## 1.0
22+
## 1.0.0
1423
* Compatible with hibernate 4.3.x
1524
* Example config:
1625

@@ -24,13 +33,13 @@ A library for using Memcached as a second level distributed cache in Hibernate.
2433
If memcached authentication is required, it can be specified using "hibernate.memcached.username" and "hibernate.memcached.password"
2534

2635
#Maven
27-
In order to use this librabry as a maven dependency, just add the following dependency to your pom.
36+
In order to use this library as a maven dependency, just add the following dependency to your pom.
2837

2938
```xml
3039
<dependency>
3140
<groupId>com.github.mihaicostin</groupId>
3241
<artifactId>hibernate-l2-memcached</artifactId>
33-
<version>1.0.0</version>
42+
<version>1.1.0</version>
3443
</dependency>
3544
```
3645

pom.xml

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

55
<groupId>com.github.mihaicostin</groupId>
66
<artifactId>hibernate-l2-memcached</artifactId>
7-
<version>1.1.0-SNAPSHOT</version>
7+
<version>1.1.0</version>
88
<name>hibernate-l2-memcached</name>
99
<description>A library for using Memcached as a second level distributed cache in Hibernate.</description>
1010
<url>https://github.com/mihaicostin/hibernate-l2-memcached</url>

0 commit comments

Comments
 (0)