Skip to content

Commit 47646cb

Browse files
authored
Merge pull request #7 from spandex-project/release_0_3_0
Prep for v0.3.0 release
2 parents 9cd86b8 + 38309b4 commit 47646cb

File tree

4 files changed

+40
-4
lines changed

4 files changed

+40
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ 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_datadog/compare/vNEXT...v0.2.0
9+
[NEXT]: https://github.com/spandex-project/spandex_datadog/compare/vNEXT...v0.3.0
10+
11+
## [0.3.0]
12+
13+
[0.3.0]: https://github.com/spandex-project/spandex_datadog/compare/v0.3.0...v0.2.0
1014

1115
### Added
1216
- `SpandexDatadog.Adapter.inject_context/3` added to support the new version of

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
MIT License
2+
3+
Copyright (c) 2018 Zachary Daniel
4+
Copyright (c) 2018 Greg Mefford
5+
6+
Permission is hereby granted, free of charge, to any person obtaining a copy
7+
of this software and associated documentation files (the "Software"), to deal
8+
in the Software without restriction, including without limitation the rights
9+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10+
copies of the Software, and to permit persons to whom the Software is
11+
furnished to do so, subject to the following conditions:
12+
13+
The above copyright notice and this permission notice shall be included in all
14+
copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies in `mix.exs`:
1010
```elixir
1111
def deps do
1212
[
13-
{:spandex_datadog, "~> 0.1.0"}
13+
{:spandex_datadog, "~> 0.3.0"}
1414
]
1515
end
1616
```
@@ -45,7 +45,7 @@ priority sampling documentation].
4545

4646
[Datadog priority sampling documentation]: https://docs.datadoghq.com/tracing/getting_further/trace_sampling_and_storage/#priority-sampling-for-distributed-tracing
4747

48-
## Api Sender Performance
48+
## API Sender Performance
4949

5050
Originally, the library had an API server and spans were sent via
5151
`GenServer.cast`, but we've seen the need to introduce backpressure, and limit

mix.exs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,12 @@ defmodule SpandexDatadog.MixProject do
55
[
66
app: :spandex_datadog,
77
description: description(),
8-
version: "0.2.0",
8+
version: "0.3.0",
99
elixir: "~> 1.6",
1010
start_permanent: Mix.env() == :prod,
1111
deps: deps(),
1212
elixirc_paths: elixirc_paths(Mix.env()),
13+
docs: docs(),
1314
package: package()
1415
]
1516
end
@@ -38,6 +39,15 @@ defmodule SpandexDatadog.MixProject do
3839
defp elixirc_paths(:test), do: ["lib", "test/support"]
3940
defp elixirc_paths(_), do: ["lib"]
4041

42+
defp docs do
43+
[
44+
main: "readme",
45+
extras: [
46+
"README.md"
47+
]
48+
]
49+
end
50+
4151
defp deps do
4252
[
4353
{:ex_doc, ">= 0.0.0", only: :dev},

0 commit comments

Comments
 (0)