Skip to content

Commit e2750b6

Browse files
committed
fixes #29 by adding clj-commons ns prefix
this follows other clj-commons libs Signed-off-by: Sean Corfield <[email protected]>
1 parent 2ef4072 commit e2750b6

File tree

8 files changed

+934
-12
lines changed

8 files changed

+934
-12
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## CHANGES
22

3-
v0.1.8 in progress
3+
v0.2.0 in progress
4+
* Deprecated single-segment `durable-queue` ns; use `clj-commons.durable-queue` instead
45
* Clean up lint issues; export clj-kondo config
56
* Add a changelog!
67

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This library implements a disk-backed task queue, allowing for queues that can s
1515
To interact with queues, first create a `queues` object by specifying a directory in the filesystem and an options map:
1616

1717
```clj
18-
> (require '[durable-queue :as dq])
18+
> (require '[clj-commons.durable-queue :as dq])
1919
nil
2020
> (def q (dq/queues "/tmp" {}))
2121
#'q

build.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
[deps-deploy.deps-deploy :as dd]))
1616

1717
(def lib 'org.clj-commons/durable-queue)
18-
(defn- the-version [patch] (format "0.1.%s" patch))
19-
(def version (the-version "8")) ; unreleased
18+
(defn- the-version [patch] (format "0.2.%s" patch))
19+
(def version (the-version "0")) ; 0.2.0 unreleased
2020
(def snapshot (the-version "99-SNAPSHOT"))
2121
(def class-dir "target/classes")
2222

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@
2121
:benchmark :benchmark
2222
:stress :stress}
2323
:codox {:writer codox-md.writer/write-docs
24-
:include [durable-queue]}
24+
:include [clj-commons.durable-queue]}
2525
:jvm-opts ^:replace ["-server" "-Xmx100m"])

0 commit comments

Comments
 (0)