Skip to content

Commit

Permalink
v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mobileoverlord committed Mar 19, 2018
1 parent f4a631f commit 56de9fa
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
# SystemRegistry

## v0.8.0-dev
## v0.8.0

* Enhancements
* Decouple producers from global state server.

Prior to 0.8.0, committing transactions would block system_registry until the
transaction was applied or rejected. Callers are now detached from the global
state server.

Important note:
This change in behaviour means that transactions that fail validation
will not return an error immediately. Instead, if a process is interested
in errors, the transaction option `notify_on_error: true` must be set.

## v0.7.0

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule SystemRegistry.Mixfile do
def project do
[
app: :system_registry,
version: "0.8.0-dev",
version: "0.8.0",
elixir: "~> 1.4",
start_permanent: Mix.env() == :prod,
elixirc_paths: elixirc_paths(Mix.env()),
Expand Down
2 changes: 1 addition & 1 deletion mix.lock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
%{
"earmark": {:hex, :earmark, "1.2.4", "99b637c62a4d65a20a9fb674b8cffb8baa771c04605a80c911c4418c69b75439", [:mix], [], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.18.1", "37c69d2ef62f24928c1f4fdc7c724ea04aecfdf500c4329185f8e3649c915baf", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}], "hexpm"},
"ex_doc": {:hex, :ex_doc, "0.18.3", "f4b0e4a2ec6f333dccf761838a4b253d75e11f714b85ae271c9ae361367897b7", [:mix], [{:earmark, "~> 1.1", [hex: :earmark, repo: "hexpm", optional: false]}], "hexpm"},
}

0 comments on commit 56de9fa

Please sign in to comment.