tricorder-types 0.3.0.0 → 0.3.1.0
raw patch · 3 files changed
+10/−17 lines, 3 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Tricorder.CLI.Command: Follow :: FollowMode
- Tricorder.CLI.Command: NoFollow :: FollowMode
- Tricorder.CLI.Command: data FollowMode
- Tricorder.CLI.Command: instance GHC.Classes.Eq Tricorder.CLI.Command.FollowMode
- Tricorder.CLI.Command: ShowLog :: FollowMode -> LogMode
+ Tricorder.CLI.Command: ShowLog :: LogMode
Files
- CHANGELOG.md +6/−0
- src/Tricorder/CLI/Command.hs +2/−16
- tricorder-types.cabal +2/−1
CHANGELOG.md view
@@ -7,6 +7,12 @@ ## [Unreleased] +## [0.3.1.0] - 2026-10-15++### Added++- Support GHC 9.14.+ ## [0.3.0.0] - 2026-09-11 ### Removed
src/Tricorder/CLI/Command.hs view
@@ -1,7 +1,6 @@ module Tricorder.CLI.Command ( Command (..) , EvalCommentsOptions (..)- , FollowMode (..) , Force (..) , LogMode (..) , OutputFormat (..)@@ -37,15 +36,7 @@ deriving stock (Eq) -data FollowMode- = NoFollow- | Follow- deriving stock (Eq)---data LogMode- = ShowLog FollowMode- | ShowLogPath+data LogMode = ShowLog | ShowLogPath data StatusOptions = StatusOptions@@ -99,7 +90,7 @@ "test-results" : failedArgs failedOnly <> waitArgs wait commandToArgs UI = ["ui"] commandToArgs (Log ShowLogPath) = ["log", "--print-path"]-commandToArgs (Log (ShowLog follow)) = "log" : followArgs follow+commandToArgs (Log ShowLog) = ["log"] commandToArgs (Source queries) = "source" : map renderSourceQuery queries commandToArgs (Restart doForce) = "restart" : forceArgs doForce commandToArgs (EvalComments (EvalCommentsOptions {wait, format})) =@@ -124,11 +115,6 @@ verbosityArgs :: Verbosity -> [String] verbosityArgs Verbose = ["--verbose"] verbosityArgs Concise = []---followArgs :: FollowMode -> [String]-followArgs Follow = ["--follow"]-followArgs NoFollow = [] failedArgs :: Bool -> [String]
tricorder-types.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack name: tricorder-types-version: 0.3.0.0+version: 0.3.1.0 synopsis: Shared domain types for various Tricorder components description: Shared domain types for various Tricorder components like [Tricorder itself](https://hackage.haskell.org/package/tricorder) and@@ -23,6 +23,7 @@ , GHC == 9.6.7 , GHC == 9.8.4 , GHC == 9.12.4+ , GHC == 9.14.1 extra-doc-files: README.md CHANGELOG.md