Skip to content

Commit

Permalink
chore(integration): remove experimental feature disclaimer
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Nov 19, 2024
1 parent 6d86e2c commit 237c327
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 35 deletions.
8 changes: 4 additions & 4 deletions git-cliff-core/src/changelog.rs
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ impl<'a> Changelog<'a> {
.map(|v| v.contains_variable(github::TEMPLATE_VARIABLES))
.unwrap_or(false)
{
warn!("You are using an experimental feature! Please report bugs at <https://git-cliff.org/issues>");
debug!("You are using an experimental feature! Please report bugs at <https://git-cliff.org/issues>");
let github_client =
GitHubClient::try_from(self.config.remote.github.clone())?;
info!(
Expand Down Expand Up @@ -282,7 +282,7 @@ impl<'a> Changelog<'a> {
.map(|v| v.contains_variable(gitlab::TEMPLATE_VARIABLES))
.unwrap_or(false)
{
warn!("You are using an experimental feature! Please report bugs at <https://git-cliff.org/issues>");
debug!("You are using an experimental feature! Please report bugs at <https://git-cliff.org/issues>");
let gitlab_client =
GitLabClient::try_from(self.config.remote.gitlab.clone())?;
info!(
Expand Down Expand Up @@ -346,7 +346,7 @@ impl<'a> Changelog<'a> {
.map(|v| v.contains_variable(gitea::TEMPLATE_VARIABLES))
.unwrap_or(false)
{
warn!("You are using an experimental feature! Please report bugs at <https://git-cliff.org/issues>");
debug!("You are using an experimental feature! Please report bugs at <https://git-cliff.org/issues>");
let gitea_client =
GiteaClient::try_from(self.config.remote.gitea.clone())?;
info!(
Expand Down Expand Up @@ -399,7 +399,7 @@ impl<'a> Changelog<'a> {
.map(|v| v.contains_variable(bitbucket::TEMPLATE_VARIABLES))
.unwrap_or(false)
{
warn!("You are using an experimental feature! Please report bugs at <https://git-cliff.org/issues>");
debug!("You are using an experimental feature! Please report bugs at <https://git-cliff.org/issues>");
let bitbucket_client =
BitbucketClient::try_from(self.config.remote.bitbucket.clone())?;
info!(
Expand Down
6 changes: 0 additions & 6 deletions website/blog/git-cliff-2.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,6 @@ For detailed documentation and usage examples, check out the [GitHub integration

:::

:::warning

This is an experimental feature so please [report bugs](https://github.com/orhun/git-cliff/issues/new/choose) to help us improve!

:::

---

### 🦀 RustLab 2023
Expand Down
6 changes: 0 additions & 6 deletions website/docs/integration/bitbucket.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ sidebar_position: 4

# Bitbucket Integration 📘

:::warning

This is still an experimental feature, please [report bugs](https://github.com/orhun/git-cliff/issues/new/choose).

:::

:::note

If you have built from source, enable the `bitbucket` feature flag for the integration to work.
Expand Down
8 changes: 1 addition & 7 deletions website/docs/integration/gitea.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ sidebar_position: 3

# Gitea Integration 🍵

:::warning

This is still an experimental feature, please [report bugs](https://github.com/orhun/git-cliff/issues/new/choose).

:::

:::note

If you have built from source, enable the `gitea` feature flag for the integration to work.
Expand Down Expand Up @@ -47,7 +41,7 @@ token = "***"

[Gitea REST API](https://gitea.com/api/swagger) is being used to retrieve data from Gitea.
It does not require authentication for public repositories. If your project uses a private
repository, you need to create an access token under *Settings* > *Applications* > *Access tokens*.
repository, you need to create an access token under _Settings_ > _Applications_ > _Access tokens_.

:::

Expand Down
6 changes: 0 additions & 6 deletions website/docs/integration/github.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ sidebar_position: 1

# GitHub Integration 🐙

:::warning

This is still an experimental feature, please [report bugs](https://github.com/orhun/git-cliff/issues/new/choose).

:::

:::note

If you have built from source, enable the `github` feature flag for the integration to work.
Expand Down
6 changes: 0 additions & 6 deletions website/docs/integration/gitlab.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ sidebar_position: 2

# GitLab Integration 🦊

:::warning

This is still an experimental feature, please [report bugs](https://github.com/orhun/git-cliff/issues/new/choose).

:::

:::note

If you have built from source, enable the `gitlab` feature flag for the integration to work.
Expand Down

0 comments on commit 237c327

Please sign in to comment.