Skip to content

Commit

Permalink
Merge branch 'estk:main' into composite
Browse files Browse the repository at this point in the history
  • Loading branch information
Dirreke authored Feb 10, 2024
2 parents 2fc169e + c981ca4 commit bd31a6d
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 5 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,39 @@
# Change Log

## [1.3.0]

### New

* Add debug and release formatters
* Documentation on configuring the tool
* Code Coverage CI
* CVE Audit CI
* EditorConfig CI
* Code Owners
* NO_COLOR, CLICOLOR, CLICOLOR_FORCE controls
* Example of inline configuration with file rotation
* Time Based Trigger

### Changed

* Update minimum supported rust to 1.69 for CVE-2020-26235
* Update `arc-swap` to `1.6`
* Update `log` to `0.4.20`
* Update `humantime` to `2.1`
* Update `serde_yaml` to `0.9`
* Update `toml` to `0.8`
* Update `derivative` to `2.2`
* Update `tempfile` to `3.8`
* Moved `level` field before `message` in json format
* Legacy test moved to examples


### Fixed

* README typo regarding building for dev on windows
* Apply editorconfig
* Swap rustfmt configuration to `imports_granularity="Crate"` over deprecated `merge_imports = true`

## [1.2.0]

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ harness = false

[dependencies]
arc-swap = "1.6"
chrono = { version = "0.4", optional = true, features = ["clock"], default-features = false }
chrono = { version = "0.4.23", optional = true, features = ["clock"], default-features = false }
flate2 = { version = "1.0", optional = true }
fnv = "1.0"
humantime = { version = "2.1", optional = true }
Expand Down
4 changes: 0 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -463,10 +463,6 @@ impl Handle {
}
}

trait ErrorInternals {
fn new(message: String) -> Self;
}

#[cfg(test)]
mod test {
use log::{Level, LevelFilter, Log};
Expand Down

0 comments on commit bd31a6d

Please sign in to comment.