File tree Expand file tree Collapse file tree 4 files changed +39
-5
lines changed
Expand file tree Collapse file tree 4 files changed +39
-5
lines changed Original file line number Diff line number Diff line change 1717 runs-on : ${{ matrix.os }}
1818 strategy :
1919 matrix :
20- rust_versions : ["stable", "1.67 "]
20+ rust_versions : ["stable", "1.69 "]
2121 os : [ubuntu-latest, windows-latest]
2222 steps :
2323 - name : Checkout the source code
6363 runs-on : ubuntu-latest
6464 strategy :
6565 matrix :
66- rust_versions : ["stable", "1.67 "]
66+ rust_versions : ["stable", "1.69 "]
6767 steps :
6868 - name : Checkout the source code
6969 uses : actions/checkout@v4
Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 1.3.0]
4+
5+ ### New
6+
7+ * Add debug and release formatters
8+ * Documentation on configuring the tool
9+ * Code Coverage CI
10+ * CVE Audit CI
11+ * EditorConfig CI
12+ * Code Owners
13+ * NO_COLOR, CLICOLOR, CLICOLOR_FORCE controls
14+ * Example of inline configuration with file rotation
15+ * Time Based Trigger
16+
17+ ### Changed
18+
19+ * Update minimum supported rust to 1.69 for CVE-2020 -26235
20+ * Update ` arc-swap ` to ` 1.6 `
21+ * Update ` log ` to ` 0.4.20 `
22+ * Update ` humantime ` to ` 2.1 `
23+ * Update ` serde_yaml ` to ` 0.9 `
24+ * Update ` toml ` to ` 0.8 `
25+ * Update ` derivative ` to ` 2.2 `
26+ * Update ` tempfile ` to ` 3.8 `
27+ * Moved ` level ` field before ` message ` in json format
28+ * Legacy test moved to examples
29+
30+
31+ ### Fixed
32+
33+ * README typo regarding building for dev on windows
34+ * Apply editorconfig
35+ * Swap rustfmt configuration to ` imports_granularity="Crate" ` over deprecated ` merge_imports = true `
36+
337## [ 1.2.0]
438
539### Changed
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ repository = "https://github.com/estk/log4rs"
88readme = " README.md"
99keywords = [" log" , " logger" , " logging" , " log4" ]
1010edition = " 2018"
11- rust-version = " 1.67 "
11+ rust-version = " 1.69 "
1212
1313[features ]
1414default = [" all_components" , " config_parsing" , " yaml_format" ]
Original file line number Diff line number Diff line change 44[ ![ crates.io] ( https://img.shields.io/crates/v/log4rs.svg )] ( https://crates.io/crates/log4rs )
55[ ![ License: MIT OR Apache-2.0] ( https://img.shields.io/crates/l/clippy.svg )] ( #license )
66![ CI] ( https://github.com/estk/log4rs/workflows/CI/badge.svg )
7- [ ![ Minimum rustc version] ( https://img.shields.io/badge/rustc-1.67 +-green.svg )] ( https://github.com/estk/log4rs#rust-version-requirements )
7+ [ ![ Minimum rustc version] ( https://img.shields.io/badge/rustc-1.69 +-green.svg )] ( https://github.com/estk/log4rs#rust-version-requirements )
88
99log4rs is a highly configurable logging framework modeled after Java's Logback
1010and log4j libraries.
@@ -71,7 +71,7 @@ fn main() {
7171
7272## Rust Version Requirements
7373
74- 1.67
74+ 1.69
7575
7676## Building for Dev
7777
You can’t perform that action at this time.
0 commit comments