Skip to content

Commit c447ed6

Browse files
committed
Merge remote-tracking branch 'origin/stable'
2 parents 56f8160 + 4618904 commit c447ed6

File tree

5 files changed

+9
-3
lines changed

5 files changed

+9
-3
lines changed

package.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ extra-source-files:
2222
- ChangeLog.md
2323
- README.md
2424
- doc/*.md
25+
- package.yaml
2526
- src/setup-shim/StackSetupShim.hs
2627
- stack.yaml
2728
- test/package-dump/ghc-7.10.txt

src/Text/PrettyPrint/Leijen/Extended.hs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ instance Display (Doc a) where
162162
type AnsiDoc = Doc AnsiAnn
163163

164164
newtype AnsiAnn = AnsiAnn [SGR]
165-
deriving (Eq, Ord, Show, Monoid)
165+
deriving (Eq, Show, Monoid)
166166

167167
class HasAnsiAnn a where
168168
getAnsiAnn :: a -> AnsiAnn
@@ -297,6 +297,7 @@ data SGRTag
297297
| TagSwapForegroundBackground
298298
| TagColorForeground
299299
| TagColorBackground
300+
| TagRGBColor
300301
deriving (Eq, Ord)
301302

302303
getSGRTag :: SGR -> SGRTag
@@ -309,3 +310,4 @@ getSGRTag SetVisible{} = TagVisible
309310
getSGRTag SetSwapForegroundBackground{} = TagSwapForegroundBackground
310311
getSGRTag (SetColor Foreground _ _) = TagColorForeground
311312
getSGRTag (SetColor Background _ _) = TagColorBackground
313+
getSGRTag SetRGBColor{} = TagRGBColor

stack-nightly.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: nightly-2017-11-25
1+
resolver: nightly-2017-12-06
22
nix:
33
# --nix on the command-line to enable.
44
enable: false
@@ -8,3 +8,4 @@ nix:
88
extra-deps:
99
- bindings-uname-0.1
1010
- unliftio-0.2.0.0
11+
- ansi-terminal-0.7.1.1

stack.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@ extra-deps:
2727
- hsc2hs-0.68.2
2828
- hpack-0.20.0
2929
- unliftio-0.2.0.0
30+
- ansi-terminal-0.7.1.1
31+
- ansi-wl-pprint-0.6.8.1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
resolver: ghc-8.0.2
1+
resolver: ghc-8.2.2
22
extra-deps:
33
- stm-2.4.4.1
44
- mtl-2.2.1

0 commit comments

Comments
 (0)