diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..86e89bb --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,61 @@ +# Changelog +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). + +## [Unreleased] + +## [0.0.13](https://github.com/eopb/tide-tracing/compare/v0.0.12...v0.0.13) - 2023-10-23 + +### Other +- Add keywords to `Cargo.toml` +- bump edition to 2021 +- start tracking msrv +- remove min-versions check +- fix branch name used by CI +- revamp rust build CI job +- Add release-plz action +- bump patch version +- add detail field for internal error +- Update tracing-subscriber requirement from 0.2 to 0.3 +- fix typo +- Bump patch version :rocket: +- Update screenshot image :camera: +- Add note about opentelemtry conventions to README +- Use conventional trace field names +- Tiny cleanup to import in example code +- Bump patch version :rocket: +- Use structured fields in spans, rather than separate events +- Simplify tracing initialization in example +- Switch the example from TRACE to INFO to reduce unrelated log noise +- Disable the "logging" feature on tide for the example +- Upgrade to GitHub-native Dependabot +- Bump patch version :rocket: +- Enable default features for example code +- Fix dependening on tide default features +- bump patch version :rocket: +- Update tide requirement from 0.15 to 0.16 +- bump patch version :rocket: +- Update tide requirement from 0.14 to 0.15 +- bump PATCH version :rocket: +- Upgrade tracing-subscriber dev-dependiecy +- Update tide requirement from 0.13 to 0.14 +- Link to latest docs for tide and tracing in readme +- cleanup readme markup +- bump PATCH version :rocket: +- Merge pull request [#1](https://github.com/eopb/tide-tracing/pull/1) from ethanboxx/dependabot/cargo/tide-0.13 +- Fix GitHub actions name +- My first GitHub CI script :octocat: +- Exclude the image in the next release. :floppy_disk: +- Replace example image with a better and more up to date one +- Code cleanups +- Remove standard span from async block. :bug: +- Make `TraceMiddleware::new` const fn +- bump MINOR version :rocket: +- Cleaner error reporting internals +- Change example to report a custom error message +- Fix broken badges +- Add docs :books: and metadata +- Add init code :rocket: +- Initial commit diff --git a/Cargo.toml b/Cargo.toml index d1e5164..70b5247 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tide-tracing" -version = "0.0.12" +version = "0.0.13" authors = ["Ethan Brierley "] license = "MIT/Apache-2.0" readme = "README.md"