Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 1.0.0 #2

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,23 @@
# Changelog

## 1.0.0 (2023-03-30)


### Features

* add basic implementation of ddsketch ([#1](https://github.com/stordco/data-streams-ex/issues/1)) ([125b5ed](https://github.com/stordco/data-streams-ex/commit/125b5ed57fb3b407406339d050121ff052aabf4a))
* add basic kafka tracking support with data streams ([#3](https://github.com/stordco/data-streams-ex/issues/3)) ([bfc6a0b](https://github.com/stordco/data-streams-ex/commit/bfc6a0b88879c8469760a521e5e0408d617e6918))
* link open telemetry span to current pathway context ([#5](https://github.com/stordco/data-streams-ex/issues/5)) ([e0ed9b2](https://github.com/stordco/data-streams-ex/commit/e0ed9b22b920c12e11684fc5eef9e619eb05a1aa))


### Bug Fixes

* add case for error http status ([#8](https://github.com/stordco/data-streams-ex/issues/8)) ([ef4a95d](https://github.com/stordco/data-streams-ex/commit/ef4a95dea09a644c9d90079a96d2f2683b8c6aa5))
* **ci:** update PR title regex check ([64ef99f](https://github.com/stordco/data-streams-ex/commit/64ef99fa5e8c4674debb43242307019600cc3060))
* dialyzer warnings for kafka integration map ([18bf936](https://github.com/stordco/data-streams-ex/commit/18bf936c1249360042a4d3e1434bf0a94236ed0b))
* filter out nil values from kafka integration tags ([b33926f](https://github.com/stordco/data-streams-ex/commit/b33926f584869165c0340fe06bf088813c80fda7))
* update kafka integration to not set context on produce ([#7](https://github.com/stordco/data-streams-ex/issues/7)) ([6807b6d](https://github.com/stordco/data-streams-ex/commit/6807b6dcd1f0504179e24ad78062c4484b4fe2c3))
* update otel resource service configuration ([adb9890](https://github.com/stordco/data-streams-ex/commit/adb9890f19dd49b2d3b1a4da6e00bf6d5f6823da))
* update tag logic to be more consistant ([#4](https://github.com/stordco/data-streams-ex/issues/4)) ([48d13df](https://github.com/stordco/data-streams-ex/commit/48d13dfa5634f24a83eba2e3b0a9a09adbced4a4))

## Changelog
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Just add [`dd_data_streams`](https://hexdocs.pm/dd_data_streams) to your `mix.ex
```elixir
def deps do
[
{:dd_data_streams, "~> 0.1.0"}
{:dd_data_streams, "~> 1.0.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule Datadog.DataStreams.MixProject do
app: :dd_data_streams,
name: "Data Streams Ex",
description: "DataDog data streams library for Elixir",
version: "0.1.0",
version: "1.0.0",
elixir: "~> 1.11",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
Expand Down