From ea4a0f0a22376e3003feeabed878d504f2bcf744 Mon Sep 17 00:00:00 2001 From: Greg Mefford Date: Sat, 15 Sep 2018 00:05:18 -0400 Subject: [PATCH] Prep for v2.3.0 release --- CHANGELOG.md | 9 +++++---- README.md | 6 +++++- mix.exs | 6 +++--- 3 files changed, 13 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cc87415..988dd6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,18 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -[NEXT]: https://github.com/spandex-project/spandex/compare/vNEXT...v2.2.0 +[NEXT]: https://github.com/spandex-project/spandex/compare/vNEXT...v2.3.0 -### Added +## [2.3.0] + +[2.3.0]: https://github.com/spandex-project/spandex/compare/v2.3.0...v2.2.0 +### Added - `Spandex.current_context/1` and `Spandex.Tracer.current_context/1` functions, which get a `Spandex.SpanContext` struct based on the current context. - - `Spandex.inject_context/3` and `Spandex.Tracer.inject_context/2` functions, which inject a distributed tracing context into a list of HTTP headers. ### Changed - - The `Spandex.Adapter` behaviour now requires an `inject_context/3` callback, which encodes a `Spandex.SpanContext` as HTTP headers for distributed tracing. diff --git a/README.md b/README.md index 5f84e97..6da05e9 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ would be greatly appreciated. ```elixir def deps do - [{:spandex, "~> 2.2.0"}] + [{:spandex, "~> 2.3.0"}] end ``` @@ -204,3 +204,7 @@ separately. ## Ecto Tracing Check out [spandex_ecto](https://github.com/spandex-project/spandex_ecto). + +## Phoenix Tracing + +Check out [spandex_phoenix](https://github.com/spandex-project/spandex_phoenix). diff --git a/mix.exs b/mix.exs index 3773cb1..18cc173 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Spandex.Mixfile do def project do [ app: :spandex, - version: "2.2.0", + version: "2.3.0", elixir: "~> 1.3", elixirc_paths: elixirc_paths(Mix.env()), build_embedded: Mix.env() == :prod, @@ -13,7 +13,7 @@ defmodule Spandex.Mixfile do package: package(), name: "Spandex", docs: docs(), - source_url: "https://github.com/zachdaniel/spandex", + source_url: "https://github.com/spandex-project/spandex", test_coverage: [tool: ExCoveralls], preferred_cli_env: [ "coveralls.travis": :test, @@ -38,7 +38,7 @@ defmodule Spandex.Mixfile do name: :spandex, maintainers: ["Zachary Daniel", "Andrew Summers", "Greg Mefford"], licenses: ["MIT License"], - links: %{"GitHub" => "https://github.com/zachdaniel/spandex"} + links: %{"GitHub" => "https://github.com/spandex-project/spandex"} ] end