Skip to content

Commit

Permalink
Bug fix, bump to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
msimonborg committed Apr 3, 2022
1 parent bbfd442 commit fd9a8f9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
# Changelog

## v.0.5.0
## v0.5.1

### Bug fixes
- Fixed a bug that caused `OddJob.Async.Proxy` processes to start under the
`OddJob.Scheduler.Supervisor` rather than the `OddJob.Async.ProxySupervisor`.

## v0.5.0

### Changes
- Changed default pool size to the number of BEAM schedulers (return value of
`System.schedulers_online/0`).

## v.0.4.2
## v0.4.2

### Improvements
- Fix typos and make improvements in documentation.
- Fix an incorrect reference to `start_link/2` in the documentation generated with
`Use OddJob.Pool`.

## v.0.4.1
## v0.4.1

### Improvements
- Hibernate `OddJob.Queue` after a 10 second timeout to trigger garbage collection and reduce
Expand Down
2 changes: 1 addition & 1 deletion lib/odd_job/async/proxy_supervisor.ex
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defmodule OddJob.Async.ProxySupervisor do
@spec start_child(atom) :: pid
def start_child(pool) do
pool
|> Utils.scheduler_sup_name()
|> Utils.proxy_sup_name()
|> DynamicSupervisor.start_child(@child)
|> Utils.extract_pid()
end
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.5.0"
@version "0.5.1"
@source_url "https://github.com/msimonborg/odd_job"

def project do
Expand Down

0 comments on commit fd9a8f9

Please sign in to comment.