Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crates/stackable-operator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.88.0] - 2025-04-01

### Added

- Add Deployments to `ClusterResource`s ([#992]).
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-operator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "stackable-operator"
description = "Stackable Operator Framework"
version = "0.87.5"
version = "0.88.0"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-telemetry/src/tracing/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ pub enum Error {
/// Settings::builder()
/// .with_environment_variable("TEST_FILE_LOG")
/// .with_default_level(LevelFilter::INFO)
/// .file_log_settings_builder("/tmp/logs")
/// .file_log_settings_builder("/tmp/logs", "tracing-rs.log")
/// .build()
/// )
/// .with_otlp_log_exporter(otlp_log_flag.then(|| {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ mod test {
let result = Settings::builder()
.with_environment_variable("hello")
.with_default_level(LevelFilter::DEBUG)
.file_log_settings_builder(PathBuf::from("/logs"), "tracing-rs.json")
.file_log_settings_builder(PathBuf::from("/logs"), "tracing-rs.log")
.with_rotation_period(Rotation::HOURLY)
.with_max_log_files(6)
.build();
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-versioned-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stackable-versioned-macros"
version = "0.7.0"
version = "0.7.1"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
2 changes: 2 additions & 0 deletions crates/stackable-versioned/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [0.7.1] - 2025-04-01

### Fixed

- Correctly emit generic type parameter defaults in enum/struct definition blocks ([#991]).
Expand Down
2 changes: 1 addition & 1 deletion crates/stackable-versioned/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stackable-versioned"
version = "0.7.0"
version = "0.7.1"
authors.workspace = true
license.workspace = true
edition.workspace = true
Expand Down
Loading