Skip to content

Commit

Permalink
Bump the minor-changes group with 4 updates (#112)
Browse files Browse the repository at this point in the history
Bumps the minor-changes group with 4 updates:
[serde](https://github.com/serde-rs/serde),
[serde_json](https://github.com/serde-rs/json),
[toml](https://github.com/toml-rs/toml) and
[clap](https://github.com/clap-rs/clap).

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Ostrovski <[email protected]>
  • Loading branch information
dependabot[bot] and slowli authored Feb 3, 2024
1 parent cd91b87 commit 950c4f3
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 58 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Minimum supported Rust version. Should be consistent with CI and mentions
# in crate READMEs.
msrv = "1.67"
msrv = "1.69"
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

env:
# Minimum supported Rust version.
msrv: 1.67.0
msrv: 1.69.0
# Nightly Rust necessary for building docs.
nightly: nightly-2023-09-09

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html)

- Allow configuring pixels per scroll using new `ScrollOptions.pixels_per_scroll` field.
- Change some default values and set more default values during `TemplateOptions` deserialization.
- Bump minimum supported Rust version to 1.67.
- Bump minimum supported Rust version to 1.69.

## 0.3.0 - 2023-06-03

Expand Down
100 changes: 50 additions & 50 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "term-transcript"
version = "0.3.0"
authors = ["Alex Ostrovski <[email protected]>"]
edition = "2021"
rust-version = "1.67"
rust-version = "1.69"
readme = "README.md"
license = "MIT OR Apache-2.0"
keywords = ["snapshot", "terminal", "SVG"]
Expand Down Expand Up @@ -38,7 +38,7 @@ anyhow = "1.0.79"
assert_matches = "1.5.0"
doc-comment = "0.3.3"
test-casing = "0.1.2"
toml = "0.8.2"
toml = "0.8.9"
tracing-capture = "0.1.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
version-sync = "0.9.2"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://github.com/slowli/term-transcript/workflows/CI/badge.svg?branch=master)](https://github.com/slowli/term-transcript/actions)
[![License: MIT OR Apache-2.0](https://img.shields.io/badge/License-MIT%2FApache--2.0-blue)](https://github.com/slowli/term-transcript#license)
![rust 1.67+ required](https://img.shields.io/badge/rust-1.67+-blue.svg?label=Required%20Rust)
![rust 1.69+ required](https://img.shields.io/badge/rust-1.69+-blue.svg?label=Required%20Rust)

**Documentation:** [![Docs.rs](https://docs.rs/term-transcript/badge.svg)](https://docs.rs/term-transcript/)
[![crate docs (master)](https://img.shields.io/badge/master-yellow.svg?label=docs)](https://slowli.github.io/term-transcript/term_transcript/)
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ path = "src/main.rs"

[dependencies]
anyhow = "1.0.79"
clap = { version = "4.4.16", features = ["derive", "env", "wrap_help"] }
clap = { version = "4.4.18", features = ["derive", "env", "wrap_help"] }
handlebars = "4.5.0"
humantime = "2.1.0"
is-terminal = "0.4.10"
serde_json = "1.0"
termcolor = "1.4.1"
toml = "0.8.2"
toml = "0.8.9"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"], optional = true }

term-transcript = { version = "0.3.0", path = ".." }
Expand Down

0 comments on commit 950c4f3

Please sign in to comment.