Skip to content

Commit

Permalink
Release v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slashdotdash committed Sep 7, 2022
1 parent d897041 commit 2991340
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## v1.4.0-rc.0
## v1.4.0

- Support [Commanded v1.4.0](https://github.com/commanded/commanded/blob/master/CHANGELOG.md#v140) with subscription concurrency ([#10](https://github.com/commanded/commanded-eventstore-adapter/pull/10)).

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# EventStore adapter for Commanded

Use the PostgreSQL-based [EventStore](https://github.com/commanded/eventstore) with [Commanded](https://github.com/commanded/commanded).
Use the Postgres-based [EventStore](https://github.com/commanded/eventstore) with [Commanded](https://github.com/commanded/commanded).

[Changelog](CHANGELOG.md)

Expand Down
12 changes: 6 additions & 6 deletions config/test.exs
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
import Config

# Print only warnings and errors during test
config :logger, :console, level: :warn, format: "[$level] $message\n"

config :ex_unit, capture_log: true

config :commanded,
assert_receive_event_timeout: 1_000,
refute_receive_event_timeout: 1_000
Expand All @@ -17,5 +12,10 @@ config :commanded_eventstore_adapter, TestEventStore,
password: "postgres",
database: "eventstore_test",
hostname: "localhost",
pool_size: 1,
pool_size: 5,
pool_overflow: 0

config :ex_unit, capture_log: true

# Print only warnings and errors during test
config :logger, :console, level: :warn, format: "[$level] $message\n"
4 changes: 2 additions & 2 deletions guides/Getting Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The package can be installed from hex as follows.

```elixir
def deps do
[{:commanded_eventstore_adapter, "~> 1.2"}]
[{:commanded_eventstore_adapter, "~> 1.4"}]
end
```

Expand Down Expand Up @@ -37,7 +37,7 @@ The package can be installed from hex as follows.

```elixir
import Config

config :my_app, MyApp.EventStore,
serializer: Commanded.Serialization.JsonSerializer,
username: "postgres",
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 Commanded.EventStore.Adapters.EventStore.Mixfile do
use Mix.Project

@version "1.4.0-rc.0"
@version "1.4.0"

def project do
[
Expand Down

0 comments on commit 2991340

Please sign in to comment.