Skip to content

Commit a1ec9d5

Browse files
committed
Bump hex to 0.6.4
1 parent e3cdb51 commit a1ec9d5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Add exq to your mix.exs deps (replace version with the latest hex.pm package ver
3434
defp deps do
3535
[
3636
# ... other deps
37-
{:exq, "~> 0.6.3"}
37+
{:exq, "~> 0.6.4"}
3838
]
3939
end
4040
```
@@ -44,7 +44,7 @@ Then run ```mix deps.get```.
4444
### Configuration:
4545

4646
By default, Exq will use configuration from your config.exs file. You can use this
47-
to configure your Redis host, port, password, as well as namespace (which helps isolate the data in Redis). If you would like to specify your options as a redis url, that is also an option using the `url` config key (in which case you would not need to pass the other redis options).
47+
to configure your Redis host, port, password, as well as namespace (which helps isolate the data in Redis). If you would like to specify your options as a redis url, that is also an option using the `url` config key (in which case you would not need to pass the other redis options).
4848

4949
Other options include:
5050
* The `queues` list specifices which queues Exq will listen to for new jobs.
@@ -124,14 +124,14 @@ You can add Exq into your OTP application list, and it will start an instance of
124124
When using Exq through OTP, it will register a process under the name ```Elixir.Exq``` - you can use this atom where expecting a process name in the Exq module.
125125

126126
## Using iex:
127-
If you'd like to try Exq out on the iex console, you can do this by typing
127+
If you'd like to try Exq out on the iex console, you can do this by typing
128128
```
129129
mix deps.get
130130
```
131-
and then
131+
and then
132132
```
133133
iex -S mix
134-
```
134+
```
135135

136136
### Standalone Exq:
137137

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Exq.Mixfile do
33

44
def project do
55
[ app: :exq,
6-
version: "0.6.3",
6+
version: "0.6.4",
77
elixir: "~> 1.0.0 or ~> 1.1.1 or ~> 1.2",
88
elixirc_paths: ["lib"],
99
package: [

0 commit comments

Comments
 (0)