Skip to content

Commit

Permalink
chore: bump to v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
J0sueTM committed Jul 8, 2024
1 parent 55b94e6 commit eb0b830
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ RQ (Redis Queue) is a simple Clojure package for queueing jobs and processing th

> "simple is better than complex" - [The Zen of Python](https://peps.python.org/pep-0020/)
## installation

We distribute the library via [Clojars](https://clojars.org/com.moclojer/rq).

```edn
com.moclojer/rq {:mvn/version "0.1.2"}
```

```clojure
[com.moclojer/rq "0.1.2"]
```

## example

```clojure
Expand Down Expand Up @@ -57,15 +69,3 @@ sequenceDiagram
Client-->>Logger: log closing client
Client-->>User: confirm client closure
```

## installation

We distribute the library via [Clojars](https://clojars.org/com.moclojer/rq).

```edn
com.moclojer/rq {:mvn/version "0.1.0"}
```

```clojure
[com.moclojer/rq "0.1.0"]
```
2 changes: 1 addition & 1 deletion src/com/moclojer/rq.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(:import
[redis.clients.jedis JedisPooled]))

(def version "0.1.1")
(def version "0.1.2")

;; redis connection pool to be thread safe
(def
Expand Down

0 comments on commit eb0b830

Please sign in to comment.