Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasPickering committed Sep 6, 2024
1 parent a723680 commit e647484
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.0.0] - 2024-09-06

2.0 is headlined by a highly requested feature: one-off edits to recipes! If you need to tweak a query parameter or edit a body, but don't want to modify your collection file, you can now highlight the value in question and hit `e` to modify it. The override will be retained until you modify the collection file or exit Slumber, at which point it will revert to its original value.

Aside from the major new feature, there is one breaking change to the escape syntax of templates. The old backslash-based syntax was fraught with edge cases and unpredictable behavior. This new syntax is simpler to use, simpler to implement, and much more bulletproof. This syntax was rare to use to begin with, so **most people will be unimpacted by this change.**
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-beta.2"
version = "2.0.0"
# Keep in sync w/ rust-toolchain.toml
rust-version = "1.80.0"

Expand All @@ -33,10 +33,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/slumber_cli", version = "2.0.0-beta.2" }
slumber_config = {path = "./crates/slumber_config", version = "2.0.0-beta.2" }
slumber_core = {path = "./crates/slumber_core", version = "2.0.0-beta.2" }
slumber_tui = {path = "./crates/slumber_tui", version = "2.0.0-beta.2" }
slumber_cli = {path = "./crates/slumber_cli", version = "2.0.0" }
slumber_config = {path = "./crates/slumber_config", version = "2.0.0" }
slumber_core = {path = "./crates/slumber_core", version = "2.0.0" }
slumber_tui = {path = "./crates/slumber_tui", version = "2.0.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/slumber_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-beta.2"
version = "2.0.0"
# Rely on parent for rust-version

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/slumber_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-beta.2"
version = "2.0.0"
# Rely on parent for rust-version

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/slumber_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-beta.2"
version = "2.0.0"
# Rely on parent for rust-version

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/slumber_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-beta.2"
version = "2.0.0"
# Rely on parent for rust-version

[dependencies]
Expand Down

0 comments on commit e647484

Please sign in to comment.