From fab7cb16ce9b036b47e3ce84d1b36815472a6c5c Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 24 Aug 2022 22:04:10 +0000 Subject: [PATCH] chore(release): 3.0.0-alpha.1 [skip ci] # [3.0.0-alpha.1](https://github.com/scribd/datadog_backup/compare/v2.0.2...v3.0.0-alpha.1) (2022-08-24) * feat!: release 3.0 ([d09d9e6](https://github.com/scribd/datadog_backup/commit/d09d9e6c845edb35c49cbb19ec6b35878304a078)) ### BREAKING CHANGES * DATADOG_API_KEY and DATADOG_APP_KEY are no longer the environment variables used to authenticate to Datadog. Instead, set the environment variables DD_API_KEY and DD_APP_KEY. * ruby 2.6 is no longer supported. Please upgrade to ruby 2.7 or higher. * The options `--ssh` and `--ssshh` are no longer supported. Instead, please use `--quiet` to supress logging. `--debug` remains supported. * The environment variable `DATADOG_HOST` is no longer supported. Instead, please use `DD_SITE_URL`. refactor: The legacy [dogapi-rb ](https://github.com/DataDog/dogapi-rb) gem is replaced with [faraday](https://lostisland.github.io/faraday/). The [official client library](https://github.com/DataDog/datadog-api-client-ruby) was considered, but was not adopted as I had a hard time grok-ing it. --- CHANGELOG.md | 15 +++++++++++++++ lib/datadog_backup/version.rb | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ed4c13..7c1ae9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# [3.0.0-alpha.1](https://github.com/scribd/datadog_backup/compare/v2.0.2...v3.0.0-alpha.1) (2022-08-24) + + +* feat!: release 3.0 ([d09d9e6](https://github.com/scribd/datadog_backup/commit/d09d9e6c845edb35c49cbb19ec6b35878304a078)) + + +### BREAKING CHANGES + +* DATADOG_API_KEY and DATADOG_APP_KEY are no longer the environment variables used to authenticate to Datadog. Instead, set the environment variables DD_API_KEY and DD_APP_KEY. +* ruby 2.6 is no longer supported. Please upgrade to ruby 2.7 or higher. +* The options `--ssh` and `--ssshh` are no longer supported. Instead, please use `--quiet` to supress logging. `--debug` remains supported. +* The environment variable `DATADOG_HOST` is no longer supported. Instead, please use `DD_SITE_URL`. + +refactor: The legacy [dogapi-rb ](https://github.com/DataDog/dogapi-rb) gem is replaced with [faraday](https://lostisland.github.io/faraday/). The [official client library](https://github.com/DataDog/datadog-api-client-ruby) was considered, but was not adopted as I had a hard time grok-ing it. + ## [2.0.2](https://github.com/scribd/datadog_backup/compare/v2.0.1...v2.0.2) (2022-08-11) diff --git a/lib/datadog_backup/version.rb b/lib/datadog_backup/version.rb index 7d91232..9ad72eb 100644 --- a/lib/datadog_backup/version.rb +++ b/lib/datadog_backup/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module DatadogBackup - VERSION = '2.0.2' + VERSION = '3.0.0.alpha.1' end