Skip to content

Commit 0d4e3e3

Browse files
authored
Merge pull request #16 from clojure/v1_0_0-prep
V1 0 0 prep
2 parents 3d2c7d9 + dbd1a02 commit 0d4e3e3

4 files changed

Lines changed: 7 additions & 20 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ Releases and Dependency Information
3232

3333
This project follows the version scheme MAJOR.MINOR.PATCH where each component provides some relative indication of the size of the change, but does not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names).
3434

35-
Latest stable release: 0.8.2
35+
Latest stable release: 1.0.0
3636

3737
* [All Released Versions](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.clojure%22%20AND%20a%3A%22core.cache%22)
3838

3939
* [Development Snapshot Versions](https://oss.sonatype.org/index.html#nexus-search;gav~org.clojure~core.cache~~~)
4040

4141
[Leiningen](https://github.com/technomancy/leiningen) dependency information:
4242

43-
[org.clojure/core.cache "0.8.2"]
43+
[org.clojure/core.cache "1.0.0"]
4444

4545
[Maven](http://maven.apache.org/) dependency information:
4646

4747
<dependency>
4848
<groupId>org.clojure</groupId>
4949
<artifactId>core.cache</artifactId>
50-
<version>0.8.2</version>
50+
<version>1.0.0</version>
5151
</dependency>
5252

5353

@@ -145,7 +145,7 @@ Developer Information
145145
Change Log
146146
====================
147147

148-
* next
148+
* Release 1.0.0 on 2020-03-11
149149
* Update data.priority-map to 1.0.0
150150
* Release 0.8.2 on 2019-09-30
151151
* [CCACHE-57](http://clojure.atlassian.net/browse/CCACHE-57) Fix wrapped cache `miss` function

docs/Including.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The core.cache releases and snapshots are stored in the following repositories:
1010

1111
You can use core.cache in your [Leiningen](https://github.com/technomancy/leiningen) projects with the following `:dependencies` directive in your `project.clj` file:
1212

13-
[org.clojure/core.cache "0.8.2"]
13+
[org.clojure/core.cache "1.0.0"]
1414

1515
## Maven
1616

@@ -19,7 +19,7 @@ For Maven-driven projects, use the following slice of XML in your `pom.xml`'s `<
1919
<dependency>
2020
<groupId>org.clojure</groupId>
2121
<artifactId>core.cache</artifactId>
22-
<version>0.8.2</version>
22+
<version>1.0.0</version>
2323
</dependency>
2424

2525
Enjoy!

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>core.cache</artifactId>
5-
<version>0.8.3-SNAPSHOT</version>
5+
<version>1.0.0-SNAPSHOT</version>
66
<name>core.cache</name>
77
<description>Cache library for Clojure.</description>
88

src/main/clojure/clojure/core/cache.clj

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -660,16 +660,3 @@
660660
(clojure.core.cache/seed (SoftCache. (ConcurrentHashMap.) (ConcurrentHashMap.) (ReferenceQueue.))
661661
base))
662662

663-
(comment
664-
665-
(def C (-> {:a 1 :b 2}
666-
(fifo-cache-factory :threshold 2)
667-
(ttl-cache-factory :ttl 5000)))
668-
669-
(assoc C :c 42)
670-
;;=> {:b 2, :c 42}
671-
672-
;; wait 5 seconds
673-
674-
(assoc C :d 138))
675-
;;=> {:d 138}

0 commit comments

Comments
 (0)