Skip to content

Commit

Permalink
version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
manukall committed Jun 26, 2017
1 parent 84e905a commit 4bb7138
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## Next
## 1.1.1

- fix preload queries not appearing in traces for newer ecto versions

Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Expand Up @@ -3,7 +3,7 @@ defmodule PryIn.Mixfile do

def project do
[app: :pryin,
version: "1.1.0",
version: "1.1.1",
elixir: "~> 1.3",
elixirc_paths: elixirc_paths(Mix.env),
build_embedded: Mix.env == :prod,
Expand Down
2 changes: 1 addition & 1 deletion test/pryin/interaction_forwarder_test.exs
Expand Up @@ -47,7 +47,7 @@ defmodule PryIn.InteractionForwarderTest do
assert_receive {:interactions_sent, encoded_data}
data = Data.decode(encoded_data)
assert data.env == :dev
assert data.pryin_version == "1.1.0"
assert data.pryin_version == "1.1.1"
assert data.app_version == "1.2.5" # otp_app ist set to :exprotobuf
end

Expand Down
2 changes: 1 addition & 1 deletion test/pryin/system_metrics_collector_test.exs
Expand Up @@ -8,7 +8,7 @@ defmodule PryIn.SystemMetricsCollectorTest do
assert_receive({:system_metrics_sent, encoded_data}, 500)
data = Data.decode(encoded_data)
assert data.env == :dev
assert data.pryin_version == "1.1.0"
assert data.pryin_version == "1.1.1"
assert data.app_version == "1.2.5" # otp_app ist set to :exprotobuf
assert is_number(data.system_metrics.process_count)
assert is_number(data.system_metrics.run_queue)
Expand Down

0 comments on commit 4bb7138

Please sign in to comment.