Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasPickering committed Sep 27, 2024
1 parent 0c84366 commit 256f0ca
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 14 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),

## [Unreleased] - ReleaseDate

## [2.1.0] - 2024-09-27

### Added

- Use `SLUMBER_CONFIG_PATH` to customize configuration (_not_ collection) file path [#370](https://github.com/LucasPickering/slumber/issues/370)
Expand Down
10 changes: 5 additions & 5 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["rest", "http", "terminal", "tui"]
license = "MIT"
name = "slumber"
repository = "https://github.com/LucasPickering/slumber"
version = "2.0.0"
version = "2.1.0"
# Keep in sync w/ rust-toolchain.toml
rust-version = "1.80.0"

Expand Down Expand Up @@ -35,10 +35,10 @@ serde_json = {version = "1.0.120", default-features = false}
serde_json_path = "0.6.3"
serde_test = "1.0.176"
serde_yaml = {version = "0.9.0", default-features = false}
slumber_cli = {path = "./crates/cli", version = "2.0.0"}
slumber_config = {path = "./crates/config", version = "2.0.0"}
slumber_core = {path = "./crates/core", version = "2.0.0"}
slumber_tui = {path = "./crates/tui", version = "2.0.0"}
slumber_cli = {path = "./crates/cli", version = "2.1.0" }
slumber_config = {path = "./crates/config", version = "2.1.0" }
slumber_core = {path = "./crates/core", version = "2.1.0" }
slumber_tui = {path = "./crates/tui", version = "2.1.0" }
strum = {version = "0.26.3", default-features = false}
tokio = {version = "1.39.2", default-features = false}
tracing = "0.1.40"
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["rest", "http", "terminal", "tui"]
license = "MIT"
name = "slumber_cli"
repository = "https://github.com/LucasPickering/slumber"
version = "2.0.0"
version = "2.1.0"
# Rely on parent for rust-version

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["rest", "http", "terminal", "tui"]
license = "MIT"
name = "slumber_config"
repository = "https://github.com/LucasPickering/slumber"
version = "2.0.0"
version = "2.1.0"
# Rely on parent for rust-version

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["rest", "http", "terminal", "tui"]
license = "MIT"
name = "slumber_core"
repository = "https://github.com/LucasPickering/slumber"
version = "2.0.0"
version = "2.1.0"
# Rely on parent for rust-version

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/tui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ keywords = ["rest", "http", "terminal", "tui"]
license = "MIT"
name = "slumber_tui"
repository = "https://github.com/LucasPickering/slumber"
version = "2.0.0"
version = "2.1.0"
# Rely on parent for rust-version

[dependencies]
Expand Down

0 comments on commit 256f0ca

Please sign in to comment.