Skip to content

Commit 970cc99

Browse files
authored
Merge pull request #79 from spandex-project/release_2_3_0
Prep for 2.3.0 Release
2 parents bfe65b5 + ea4a0f0 commit 970cc99

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9-
[NEXT]: https://github.com/spandex-project/spandex/compare/vNEXT...v2.2.0
9+
[NEXT]: https://github.com/spandex-project/spandex/compare/vNEXT...v2.3.0
1010

11-
### Added
11+
## [2.3.0]
12+
13+
[2.3.0]: https://github.com/spandex-project/spandex/compare/v2.3.0...v2.2.0
1214

15+
### Added
1316
- `Spandex.current_context/1` and `Spandex.Tracer.current_context/1` functions,
1417
which get a `Spandex.SpanContext` struct based on the current context.
15-
1618
- `Spandex.inject_context/3` and `Spandex.Tracer.inject_context/2` functions,
1719
which inject a distributed tracing context into a list of HTTP headers.
1820

1921
### Changed
20-
2122
- The `Spandex.Adapter` behaviour now requires an `inject_context/3` callback,
2223
which encodes a `Spandex.SpanContext` as HTTP headers for distributed
2324
tracing.

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ would be greatly appreciated.
3737

3838
```elixir
3939
def deps do
40-
[{:spandex, "~> 2.2.0"}]
40+
[{:spandex, "~> 2.3.0"}]
4141
end
4242
```
4343

@@ -204,3 +204,7 @@ separately.
204204
## Ecto Tracing
205205
206206
Check out [spandex_ecto](https://github.com/spandex-project/spandex_ecto).
207+
208+
## Phoenix Tracing
209+
210+
Check out [spandex_phoenix](https://github.com/spandex-project/spandex_phoenix).

mix.exs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule Spandex.Mixfile do
44
def project do
55
[
66
app: :spandex,
7-
version: "2.2.0",
7+
version: "2.3.0",
88
elixir: "~> 1.3",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
build_embedded: Mix.env() == :prod,
@@ -13,7 +13,7 @@ defmodule Spandex.Mixfile do
1313
package: package(),
1414
name: "Spandex",
1515
docs: docs(),
16-
source_url: "https://github.com/zachdaniel/spandex",
16+
source_url: "https://github.com/spandex-project/spandex",
1717
test_coverage: [tool: ExCoveralls],
1818
preferred_cli_env: [
1919
"coveralls.travis": :test,
@@ -38,7 +38,7 @@ defmodule Spandex.Mixfile do
3838
name: :spandex,
3939
maintainers: ["Zachary Daniel", "Andrew Summers", "Greg Mefford"],
4040
licenses: ["MIT License"],
41-
links: %{"GitHub" => "https://github.com/zachdaniel/spandex"}
41+
links: %{"GitHub" => "https://github.com/spandex-project/spandex"}
4242
]
4343
end
4444

0 commit comments

Comments
 (0)