chore: Release cull-gmail v0.0.13
This commit is contained in:
23
CHANGELOG.md
23
CHANGELOG.md
@@ -5,9 +5,25 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.0.13] - 2025-10-22
|
||||||
|
|
||||||
|
Summary: Added[1], Chore[1], Fixed[5]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- ✨ feat(cli): enhance configuration loading with logging
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- 🐛 fix(cli): load config file as optional
|
||||||
|
- 🐛 fix(cli): correct spelling errors in documentation
|
||||||
|
- 🐛 fix(client_config): print config for debugging
|
||||||
|
- 🐛 fix(cli): fix config file loading
|
||||||
|
- 🐛 fix(cli): load config file only if it exists
|
||||||
|
|
||||||
## [0.0.12] - 2025-10-22
|
## [0.0.12] - 2025-10-22
|
||||||
|
|
||||||
Summary: Added[6], Build[1], Changed[2], Chore[6], Documentation[1], Fixed[6], Testing[2]
|
Summary: Added[6], Build[1], Changed[2], Chore[7], Documentation[1], Fixed[6], Testing[2]
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
@@ -23,8 +39,8 @@ Summary: Added[6], Build[1], Changed[2], Chore[6], Documentation[1], Fixed[6], T
|
|||||||
- 🐛 fix(ci): correct default test runner value
|
- 🐛 fix(ci): correct default test runner value
|
||||||
- 🔧 fix: address clippy warnings after refactoring
|
- 🔧 fix: address clippy warnings after refactoring
|
||||||
- 🐛 fix: allow init command to run without existing config file
|
- 🐛 fix: allow init command to run without existing config file
|
||||||
- 🔧 fix: address clippy warnings and improve code formatting
|
|
||||||
- 🐛 fix: replace hardcoded paths in tests with temp directories for CI compatibility
|
- 🐛 fix: replace hardcoded paths in tests with temp directories for CI compatibility
|
||||||
|
- 🔧 fix: address clippy warnings and improve code formatting
|
||||||
- 🔧 fix: Resolve clippy warnings and formatting issues
|
- 🔧 fix: Resolve clippy warnings and formatting issues
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
@@ -501,7 +517,8 @@ Summary: Added[4], Build[3], Chore[21], Continuous Integration[4], Documentation
|
|||||||
- ✨ feat(vscode): add custom dictionary entry for ltex
|
- ✨ feat(vscode): add custom dictionary entry for ltex
|
||||||
- ✨ feat(project): add initial Cargo.toml for cull-gmail tool
|
- ✨ feat(project): add initial Cargo.toml for cull-gmail tool
|
||||||
|
|
||||||
[Unreleased]: https://github.com/jerus-org/cull-gmail/compare/v0.0.11...HEAD
|
[Unreleased]: https://github.com/jerus-org/cull-gmail/compare/v0.0.12...HEAD
|
||||||
|
[0.0.12]: https://github.com/jerus-org/cull-gmail/compare/v0.0.11...v0.0.12
|
||||||
[0.0.11]: https://github.com/jerus-org/cull-gmail/compare/v0.0.10...v0.0.11
|
[0.0.11]: https://github.com/jerus-org/cull-gmail/compare/v0.0.10...v0.0.11
|
||||||
[0.0.10]: https://github.com/jerus-org/cull-gmail/compare/v0.0.9...v0.0.10
|
[0.0.10]: https://github.com/jerus-org/cull-gmail/compare/v0.0.9...v0.0.10
|
||||||
[0.0.9]: https://github.com/jerus-org/cull-gmail/compare/v0.0.8...v0.0.9
|
[0.0.9]: https://github.com/jerus-org/cull-gmail/compare/v0.0.8...v0.0.9
|
||||||
|
|||||||
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -453,7 +453,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "cull-gmail"
|
name = "cull-gmail"
|
||||||
version = "0.0.12"
|
version = "0.0.13"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
"assert_fs",
|
"assert_fs",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "cull-gmail"
|
name = "cull-gmail"
|
||||||
description = "Cull emails from a gmail account using the gmail API"
|
description = "Cull emails from a gmail account using the gmail API"
|
||||||
version = "0.0.12"
|
version = "0.0.13"
|
||||||
authors = ["Jeremiah Russell <jrussell@jerus.ie>"]
|
authors = ["Jeremiah Russell <jrussell@jerus.ie>"]
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
rust-version = "1.88"
|
rust-version = "1.88"
|
||||||
|
|||||||
4
PRLOG.md
4
PRLOG.md
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
## [Unreleased]
|
## [0.0.13] - 2025-10-22
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
@@ -285,7 +285,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
[#92]: https://github.com/jerus-org/cull-gmail/pull/92
|
[#92]: https://github.com/jerus-org/cull-gmail/pull/92
|
||||||
[#93]: https://github.com/jerus-org/cull-gmail/pull/93
|
[#93]: https://github.com/jerus-org/cull-gmail/pull/93
|
||||||
[#94]: https://github.com/jerus-org/cull-gmail/pull/94
|
[#94]: https://github.com/jerus-org/cull-gmail/pull/94
|
||||||
[Unreleased]: https://github.com/jerus-org/cull-gmail/compare/v0.0.12...HEAD
|
[0.0.13]: https://github.com/jerus-org/cull-gmail/compare/v0.0.12...v0.0.13
|
||||||
[0.0.12]: https://github.com/jerus-org/cull-gmail/compare/v0.0.11...v0.0.12
|
[0.0.12]: https://github.com/jerus-org/cull-gmail/compare/v0.0.11...v0.0.12
|
||||||
[0.0.11]: https://github.com/jerus-org/cull-gmail/compare/v0.0.10...v0.0.11
|
[0.0.11]: https://github.com/jerus-org/cull-gmail/compare/v0.0.10...v0.0.11
|
||||||
[0.0.10]: https://github.com/jerus-org/cull-gmail/compare/v0.0.9...v0.0.10
|
[0.0.10]: https://github.com/jerus-org/cull-gmail/compare/v0.0.9...v0.0.10
|
||||||
|
|||||||
@@ -664,7 +664,7 @@ Add the library to your `Cargo.toml`:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cull-gmail = "0.0.12"
|
cull-gmail = "0.0.13"
|
||||||
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ Add the library to your `Cargo.toml`:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cull-gmail = "0.0.12"
|
cull-gmail = "0.0.13"
|
||||||
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user