Skip to content

Commit

Permalink
fix a typo in docs, bump to v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
msimonborg committed Feb 5, 2022
1 parent 84f8d7c commit 9b71d45
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.3.3

- Fix a typo in documentation.

## v0.3.2

- Improve documentation of `perform_this` macros.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The package can be installed by adding `odd_job` to your list of dependencies in
```elixir
def deps do
[
{:odd_job, "~> 0.3.2"}
{:odd_job, "~> 0.3.3"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/odd_job.ex
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ defmodule OddJob do
A macro for creating jobs with an expressive DSL.
`perform_this/3` accepts a single configuration option as the second argument that will control execution of
the job. The available options prvode the functionality of `async_perform/2`, `perform_at/3`,
the job. The available options provide the functionality of `async_perform/2`, `perform_at/3`,
and `perform_after/3`.
## Options
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule OddJob.MixProject do
use Mix.Project

@version "0.3.2"
@version "0.3.3"

def project do
[
Expand Down

0 comments on commit 9b71d45

Please sign in to comment.