Skip to content

Commit a9355db

Browse files
committed
update for release
1 parent 2c4462e commit a9355db

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ clojure.core.memoize
33

44
[core.memoize](https://github.com/clojure/core.memoize) is a Clojure contrib library providing the following features:
55

6-
* An underlying `PluggableMemoization` protocol that allows the use of customizable and swappable memoization caches that adhere to the synchronous `CacheProtocol` found in [core.cache](http://github.com/clojure/core.cache)
6+
* An underlying `PluggableMemoization` protocol that allows the use of customizable and swappable memoization caches that adhere to the synchronous `CacheProtocol` found in [core.cache](https://github.com/clojure/core.cache)
77

88
* Memoization builders for implementations of common caching strategies, including:
99
- First-in-first-out (`clojure.core.memoize/fifo`)
@@ -21,27 +21,26 @@ Releases and Dependency Information
2121

2222
This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository.
2323

24-
Latest stable release: 1.0.257
25-
26-
* [All Released Versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22core.memoize%22)
24+
Latest stable release: 1.1.266
2725

26+
* [All Released Versions](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22core.memoize%22)
2827
* [Development Snapshot Versions](https://oss.sonatype.org/index.html#nexus-search;gav~org.clojure~core.memoize~~~)
2928

3029
[CLI/`deps.edn`](https://clojure.org/reference/deps_and_cli) dependency information:
3130
```clojure
32-
org.clojure/core.memoize {:mvn/version "1.0.257"}
31+
org.clojure/core.memoize {:mvn/version "1.1.266"}
3332
```
3433

3534
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
3635

37-
[org.clojure/core.memoize "1.0.257"]
36+
[org.clojure/core.memoize "1.1.266"]
3837

39-
[Maven](http://maven.apache.org/) dependency information:
38+
[Maven](https://maven.apache.org/) dependency information:
4039

4140
<dependency>
4241
<groupId>org.clojure</groupId>
4342
<artifactId>core.memoize</artifactId>
44-
<version>1.0.257</version>
43+
<version>1.1.266</version>
4544
</dependency>
4645

4746
Documentation
@@ -85,7 +84,8 @@ Developer Information
8584

8685
Change Log
8786
====================
88-
* Release 1.0.next in progress
87+
* Release 1.1.266 on 2024.02.19
88+
* Update parent pom and deps
8989
* Fixes [CMEMOIZE-30](https://clojure.atlassian.net/browse/CMEMOIZE-30) - typo in `ttl` docstring (j-mckitrick).
9090
* Release 1.0.257 on 2022.02.11
9191
* Implement `IPending` for `RetryingDelay` for folks trying to do low-level availability tests on long-running memoized functions.

0 commit comments

Comments
 (0)