Skip to content

Commit 5a79d2c

Browse files
author
Mitsutoshi Aoe
authored
Merge pull request #66 from maoe/v0.2.8
v0.2.8 release
2 parents 492bbe1 + 10a876b commit 5a79d2c

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Revision history for threadscope
2+
3+
## 2017-07-17 - v0.2.8
4+
5+
* Add macOS support (#56)
6+
* Update ghc-events to 0.6.0 (#61)
7+
* CI builds for Linux/Windows/macOS (#64, #65)
8+
* Set upper version bounds for dependencies

threadscope.cabal

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: threadscope
2-
Version: 0.2.7
2+
Version: 0.2.8
33
Category: Development, Profiling, Trace
44
Synopsis: A graphical tool for profiling parallel Haskell programs.
55
Description: ThreadScope is a graphical viewer for thread profile
@@ -45,14 +45,20 @@ source-repository head
4545

4646
Executable threadscope
4747
Main-is: Main.hs
48-
Build-Depends: base >= 4.0 && < 5,
49-
gtk >= 0.12, cairo, glib, pango,
50-
binary, array, mtl, filepath,
48+
Build-Depends: base >= 4.6 && < 5,
49+
gtk >= 0.12 && < 0.15,
50+
cairo < 0.14,
51+
glib < 0.14,
52+
pango < 0.14,
53+
binary < 0.10,
54+
array < 0.6,
55+
mtl < 2.3,
56+
filepath < 1.5,
5157
ghc-events >= 0.5 && < 0.7,
5258
containers >= 0.2 && < 0.6,
5359
deepseq >= 1.1,
54-
text,
55-
time >= 1.1
60+
text < 1.3,
61+
time >= 1.1 && < 1.9
5662
if os(osx)
5763
build-depends: gtk-mac-integration
5864

0 commit comments

Comments
 (0)