From 787947aa9b26de9a7bc26a3864c664453739babc Mon Sep 17 00:00:00 2001 From: Arend van Beelen jr Date: Mon, 4 Dec 2023 10:51:33 +0100 Subject: [PATCH] Bump minor version (#57) * Bump minor version * Update CHANGELOG --- CHANGELOG.md | 35 ++++++++++++++++++++------------ Cargo.lock | 2 +- Cargo.toml | 4 ++-- fiberplane-pdk-macros/Cargo.toml | 2 +- fiberplane-pdk/Cargo.toml | 2 +- 5 files changed, 27 insertions(+), 18 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d33bdea..6ef5e12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,19 +2,25 @@ All notable changes to this project will be documented in this file. -The format of this file is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +The format of this file is based on +[Keep a Changelog](https://keepachangelog.com/en/1.0.0/). -Please note that while we use [Semantic Versioning](https://semver.org/spec/v2.0.0.html) -for the `providers` repository as a whole, individual crates published from this -repository may skip versions to stay in lockstep with the other crates. This -means that individual crates do not strictly follow _SemVer_ although their -versioning remains _compatible with_ SemVer, i.e. they will not contain breaking -changes if the major version hasn't changed. +Please note that while we use +[Semantic Versioning](https://semver.org/spec/v2.0.0.html) for the `providers` +repository as a whole, individual crates published from this repository may skip +versions to stay in lockstep with the other crates. This means that individual +crates do not strictly follow _SemVer_ although their versioning remains +_compatible with_ SemVer, i.e. they will not contain breaking changes if the +major version hasn't changed. ## [Unreleased] TBD +## [1.0.0-beta.6] + +- Updated dependencies + ## [1.0.0-beta.4] ### Added @@ -23,14 +29,16 @@ TBD ## [1.0.0-beta.3] - 2023-06-14 -- Prometheus provider: decrease step size in order to add more details to lines in graphs. +- Prometheus provider: decrease step size in order to add more details to lines + in graphs. ### Added + - Added provider for Parseable. - Added support for `ArrayField` schema specification. As long as `T` has a `QuerySchema` derive, you can use `Vec` in structs that derive - `QuerySchema`. Serialization to URL-encoded query uses the ["bracket" - notation](https://docs.rs/serde-querystring/0.2.1/serde_querystring/index.html#brackets-mode). + `QuerySchema`. Serialization to URL-encoded query uses the + ["bracket" notation](https://docs.rs/serde-querystring/0.2.1/serde_querystring/index.html#brackets-mode). (#31) ### Changed @@ -41,15 +49,16 @@ TBD provider. - Rename Event in the providers module to ProviderEvent (#28) - Providers set up their own panic handlers to provide better information in - case of panics (instead of letting WASM runtime default panic handling - setup) (#35) + case of panics (instead of letting WASM runtime default panic handling setup) + (#35) ### Fixed - Fixed required fields in schemas generated using the `QuerySchema` macro. - Fixed support for the `checked_by_default` and `supports_suggestions` annotations in the `ConfigSchema` and `QuerySchema` macros. -- Fixed lacking `create_cells()` implementation for Elasticsearch and Loki providers +- Fixed lacking `create_cells()` implementation for Elasticsearch and Loki + providers ## [1.0.0-beta.1] - 2023-02-14 diff --git a/Cargo.lock b/Cargo.lock index 54c75b5..1e7862e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -613,7 +613,7 @@ dependencies = [ [[package]] name = "fiberplane-pdk" -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" dependencies = [ "fiberplane-models", "fiberplane-pdk-macros", diff --git a/Cargo.toml b/Cargo.toml index 9832b75..9c77169 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,8 +14,8 @@ repository = "https://github.com/fiberplane/providers" [workspace.dependencies] fiberplane-ci = { git = "ssh://git@github.com/fiberplane/fiberplane.git", branch = "main" } fiberplane-models = { version = "1.0.0-beta.6" } -fiberplane-pdk = { version = "1.0.0-beta.6", path = "fiberplane-pdk" } -fiberplane-pdk-macros = { version = "1.0.0-beta.6", path = "fiberplane-pdk-macros" } +fiberplane-pdk = { version = "1.0.0-beta.7", path = "fiberplane-pdk" } +fiberplane-pdk-macros = { version = "1.0.0-beta.7", path = "fiberplane-pdk-macros" } fiberplane-provider-bindings = { version = "2.0.0-beta.6" } fp-bindgen = { version = "3.0.0" } fp-bindgen-support = { version = "3.0.0" } diff --git a/fiberplane-pdk-macros/Cargo.toml b/fiberplane-pdk-macros/Cargo.toml index b93a4e7..9aa7745 100644 --- a/fiberplane-pdk-macros/Cargo.toml +++ b/fiberplane-pdk-macros/Cargo.toml @@ -5,7 +5,7 @@ readme = "README.md" authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" license = { workspace = true } repository = { workspace = true } diff --git a/fiberplane-pdk/Cargo.toml b/fiberplane-pdk/Cargo.toml index 7a487c7..ce26214 100644 --- a/fiberplane-pdk/Cargo.toml +++ b/fiberplane-pdk/Cargo.toml @@ -5,7 +5,7 @@ readme = "README.md" authors = { workspace = true } edition = { workspace = true } rust-version = { workspace = true } -version = "1.0.0-beta.6" +version = "1.0.0-beta.7" license = { workspace = true } repository = { workspace = true }