diff --git a/CHANGELOG.md b/CHANGELOG.md index 47795eff..43b42092 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,27 +6,11 @@ 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] - -### Added - -### Changed - -### Deprecated - -### Removed - -### Fixed - -### Security - ## [0.1.0-alpha] - 2020-07-01 ### Added - Initial release. -[unreleased]: - https://github.com/daxpedda/sentry-contrib-native/compare/v0.1.0-alpha...HEAD [0.0.1-alpha]: https://github.com/daxpedda/sentry-contrib-native/releases/tag/v0.1.0-alpha diff --git a/Cargo.toml b/Cargo.toml index db87ac53..cc4a7e0f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,10 +17,10 @@ members = ["sentry-contrib-native-sys", "tests/test/dylib"] http = { version = "0.2", optional = true } once_cell = "1" rmpv = "0.4" -sys = { package = "sentry-contrib-native-sys", path = "sentry-contrib-native-sys", default-features = false } +sys = { package = "sentry-contrib-native-sys", version = "0.1.0-alpha", path = "sentry-contrib-native-sys", default-features = false } thiserror = "1" url = { version = "2", optional = true } -vsprintf = { git = "https://github.com/daxpedda/vsprintf", branch = "fix-windows" } +vsprintf = { package = "daxpedda-vsprintf", version = "1.0.2-pr" } [dev-dependencies] anyhow = "1" @@ -54,3 +54,7 @@ test = [] [[example]] name = "custom-transport" required-features = ["custom-transport"] + +[package.metadata.docs.rs] +features = ["nightly"] +targets = ["x86_64-unknown-linux-gnu"] diff --git a/sentry-contrib-native-sys/Cargo.toml b/sentry-contrib-native-sys/Cargo.toml index ac13ed65..fb7e8287 100644 --- a/sentry-contrib-native-sys/Cargo.toml +++ b/sentry-contrib-native-sys/Cargo.toml @@ -19,3 +19,7 @@ cmake = "0.1" default = ["default-transport"] default-transport = [] nightly = [] + +[package.metadata.docs.rs] +features = ["nightly"] +targets = ["x86_64-unknown-linux-gnu"]