Skip to content

Commit

Permalink
Merge #887
Browse files Browse the repository at this point in the history
887: build(deps): update simplelog requirement from 0.10.0 to 0.11.0 in /probe-rs-cli-util r=Yatekii a=dependabot[bot]

Updates the requirements on [simplelog](https://github.com/drakulix/simplelog.rs) to permit the latest version.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/Drakulix/simplelog.rs/blob/master/CHANGELOG.md">simplelog's changelog</a>.</em></p>
<blockquote>
<h2>v0.11.0</h2>
<pre><code>- Add colored log levels using `ansi_term` (PR [#88](Drakulix/simplelog.rs#88), credits to `@manio)`
- Add target padding (PR [#85](Drakulix/simplelog.rs#85), credits to `@bytebeamio)`
- Add optional color and style support using `paris` crate (PR [#84](Drakulix/simplelog.rs#84), credits to `@manio)`
</code></pre>
<h2>v0.10.2</h2>
<pre><code>- Fix flushing with `BufferedStandardStreams` (PR [#82](Drakulix/simplelog.rs#82), credits to `@mrkline)`
</code></pre>
<h2>v0.10.1</h2>
<pre><code>- Fix TermLogger performance using `termcolor::BufferedStandardStream` (PR [#80](Drakulix/simplelog.rs#80), credits to `@mrkline)`
- Add write thread name support for `termlog` (PR [#76](Drakulix/simplelog.rs#76), credits to `@zeroflaw)`
</code></pre>
<h2>v0.10.0</h2>
<pre><code>- Fix wrong argument naming (PR [#70](Drakulix/simplelog.rs#70), credits to `@scvalex)`
- *Breaking*: More color customization options (PR [#72](Drakulix/simplelog.rs#72), credits to `@mrkline)`
- Clarify docs on config levels
</code></pre>
<h2>v0.9.0</h2>
<pre><code>- Add customizable level label colors (PR [#69](Drakulix/simplelog.rs#69). credits to `@JarrettBillingsley)`
- Remove unneeded TermLogError
- Future-proof config by adding `#[non_exhaustive]`
- Fix compiling with minimal-versions
</code></pre>
<h2>v0.8.0</h2>
<pre><code>- Switch from `term` to `termcolor` (PR [#59](Drakulix/simplelog.rs#59). credits to `@raybritton)`
- Fix typo in docs (PR [#58](Drakulix/simplelog.rs#58), credits to `@anthonyjmartinez)`
- Switch default padding to `Off`. Padding is annoyingly controversal, just set it to whatever you prefer, if you want it.
</code></pre>
<h2>v0.7.6</h2>
<pre><code>- Derive `Clone`,`Copy`,`PartialEq`,`Eq`,`Debug` and `Hash` for `TerminalMode`. (PR [#56](Drakulix/simplelog.rs#56), credits to `@panhania)`
</code></pre>
<h2>v0.7.5</h2>
<pre><code>- Use `target()` instead of `module_path()` for filtering as suggested by `log`s docs. (PR [#52](Drakulix/simplelog.rs#52), credits to `@tsidea)`
- Allow logging thread names and pad thread ids (defaults match the old behaviour). (PR [#53](Drakulix/simplelog.rs#53), credits to `@mulark)`
</code></pre>
<h2>v0.7.4</h2>
<pre><code>- Fixed time formats with 
</code></pre>
<h2>v0.7.3</h2>
<pre><code>- Fixed `test` feature
</code></pre>
<h2>v0.7.2</h2>
<pre><code>- Allow Level Padding to be configured
</code></pre>
<h2>v0.7.1</h2>
<pre><code>- Fix `LevelFilter:Off` not turning off parts of the log messages
</code></pre>
<h2>v0.7.0</h2>
<pre><code>- Add local time zone option
- Change config to builder pattern avoiding future major version bumps
</code></pre>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/ddd6e694b8b5699e04ef20cc6dbb1bbeeeb5041a"><code>ddd6e69</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/drakulix/simplelog.rs/issues/86">#86</a> from manio/master</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/e0585753a1717f0b37aa8ce6f37889f8a985d52c"><code>e058575</code></a> Update CHANGELOG.md</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/a90ab8a14ae346945ee2f449df515d0182921d9e"><code>a90ab8a</code></a> Bump version to v0.11.0 and adjust README</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/cc590d2a364433e4fcc940e16213699de1dd873d"><code>cc590d2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/drakulix/simplelog.rs/issues/88">#88</a> from manio/level-colorize</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/cda775724849ff11ac2549723496b1afa7b8a737"><code>cda7757</code></a> config: make set_write_log_enable_colors() an ansi_term feature dependant</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/3e0b33649dc9b3bfb6f01b724c9e3c5cfadaba45"><code>3e0b336</code></a> paris_macros: fix <code>this URL is not a hyperlink</code> warnings</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/feb3458fb455f357e7fbcd108d022eb7f712977f"><code>feb3458</code></a> Add a write_log_enable_colors configuration switch</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/1f76fd5a5bddc242eabf98c074a206bca0eff17e"><code>1f76fd5</code></a> introduce colored log levels using ansi_term</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/f41c17969660c2dadc7f2644700c94ea7a649458"><code>f41c179</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/drakulix/simplelog.rs/issues/85">#85</a> from bytebeamio/modulepad</li>
<li><a href="https://github.com/Drakulix/simplelog.rs/commit/09da042e5c5eced2781fa0e051314d814b38582a"><code>09da042</code></a> Remove modulepad example</li>
<li>Additional commits viewable in <a href="https://github.com/drakulix/simplelog.rs/compare/v0.10.0...v0.11.0">compare view</a></li>
</ul>
</details>
<br />


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting ``@dependabot` rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- ``@dependabot` rebase` will rebase this PR
- ``@dependabot` recreate` will recreate this PR, overwriting any edits that have been made to it
- ``@dependabot` merge` will merge this PR after your CI passes on it
- ``@dependabot` squash and merge` will squash and merge this PR after your CI passes on it
- ``@dependabot` cancel merge` will cancel a previously requested merge and block automerging
- ``@dependabot` reopen` will reopen this PR if it is closed
- ``@dependabot` close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- ``@dependabot` ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- ``@dependabot` ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)


</details>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
bors[bot] and dependabot[bot] committed Nov 15, 2021
2 parents 545267b + 4815e0a commit 549010e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion probe-rs-cli-util/Cargo.toml
Expand Up @@ -29,6 +29,6 @@ serde = { version = "1.0.115", features = [ "derive" ] }
cargo_metadata = "0.14.0"
dunce = "1.0.1"
sentry = { version = "0.23.0", features = ["anyhow"], optional = true }
simplelog = "0.10.0"
simplelog = "0.11.0"
terminal_size = "0.1.13"
structopt = "0.3"

0 comments on commit 549010e

Please sign in to comment.