publish latest updates (#127)
This commit is contained in:
parent
56c6503a93
commit
c8b760e776
|
@ -1,5 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## 1.1.0
|
||||
|
||||
### Changed
|
||||
|
||||
* Allow setting additional attributes
|
||||
|
||||
### Fixes
|
||||
|
||||
* Fix span linking in additional task-spawned use cases
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -5,7 +5,7 @@ defmodule OpentelemetryEcto.MixProject do
|
|||
[
|
||||
app: :opentelemetry_ecto,
|
||||
description: description(),
|
||||
version: "1.0.0",
|
||||
version: "1.1.0",
|
||||
elixir: "~> 1.10",
|
||||
start_permanent: Mix.env() == :prod,
|
||||
deps: deps(),
|
||||
|
|
|
@ -1,5 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## 1.0.0
|
||||
|
||||
### Changed
|
||||
|
||||
* Publish 1.0
|
||||
|
||||
### Fixes
|
||||
|
||||
* Fix issue with insert_all
|
||||
|
||||
## 0.2.0-rc.5
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -4,7 +4,7 @@ defmodule OpentelemetryOban.MixProject do
|
|||
def project do
|
||||
[
|
||||
app: :opentelemetry_oban,
|
||||
version: "0.2.0-rc.6",
|
||||
version: "1.0.0",
|
||||
elixir: "~> 1.10",
|
||||
start_permanent: Mix.env() == :prod,
|
||||
deps: deps(),
|
||||
|
|
|
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## v0.2.1
|
||||
|
||||
### Fixes
|
||||
|
||||
- Fix return spec types
|
||||
|
||||
## v0.2.0
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{application, opentelemetry_process_propagator,
|
||||
[{description, "Tools for OpenTelemetry context propagation across process boundaries"},
|
||||
{vsn, "0.2.0"},
|
||||
{vsn, "0.2.1"},
|
||||
{registered, []},
|
||||
{applications,
|
||||
[kernel,
|
||||
|
|
Loading…
Reference in New Issue