Skip to content

Commit

Permalink
Upgraded version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
alfetahe committed Jan 23, 2024
1 parent fec6108 commit e0c65f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change log

v0.1.1 - XXXX-XX-XX
v0.2.0 - 2024-01-23

Added
- New dispatch option `atomic_priority_set` to set priority and dispatch event in one atomic operation.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ When starting `blockade` you need to provide a name for the event queue. This na

1. Add the following to your `mix.exs` file:
```elixir
{:blockade, "~> 0.1"},
{:blockade, "~> 0.2"},
```

2. Start `blockade` under your supervision tree
Expand All @@ -59,7 +59,7 @@ Add the following to your `rebar.config` file:

1. Add `blockade` as a dependency
```erlang
{deps, [{blockade, "0.1.0"}]}.
{deps, [{blockade, "0.2.0"}]}.
```

2. Start `blockade` under your supervision tree
Expand Down
2 changes: 1 addition & 1 deletion src/blockade.app.src
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{application,
blockade,
[{description, "Event queue with priority levels"},
{vsn, "0.1.0"},
{vsn, "0.2.0"},
{registered, []},
{applications, [kernel, stdlib]},
{env, []},
Expand Down

0 comments on commit e0c65f7

Please sign in to comment.