Skip to content

Commit d4e6cbe

Browse files
author
Bryan Conn
authored
docs: Update CHANGELOG for new release (#336)
* docs: Update CHANGELOG for new release * chore: update CHANGELOG * chore: fix toml versioning * chore: update msrv for toml proj
1 parent 6c6ace0 commit d4e6cbe

File tree

4 files changed

+39
-5
lines changed

4 files changed

+39
-5
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
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
@@ -63,7 +63,7 @@ jobs:
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

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ repository = "https://github.com/estk/log4rs"
88
readme = "README.md"
99
keywords = ["log", "logger", "logging", "log4"]
1010
edition = "2018"
11-
rust-version = "1.67"
11+
rust-version = "1.69"
1212

1313
[features]
1414
default = ["all_components", "config_parsing", "yaml_format"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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

99
log4rs is a highly configurable logging framework modeled after Java's Logback
1010
and 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

0 commit comments

Comments
 (0)