Skip to content

Commit

Permalink
Added upper base clause for hackage
Browse files Browse the repository at this point in the history
  • Loading branch information
bananu7 committed Dec 21, 2015
1 parent edb91e0 commit d0a0cc4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Hate.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Hate
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change

version: 0.1.4.1
version: 0.1.4.2
synopsis: A small 2D game framework.
description: A small 2D game framework.
stability: experimental
Expand Down Expand Up @@ -53,7 +53,7 @@ library
-- other-modules:

-- Other library packages from which modules are imported.
build-depends: base >= 4.6,
build-depends: base >= 4.6 && < 4.9,
GLFW-b >= 1.4 && < 1.4.7,
GLUtil >= 0.7,
OpenGL > 2.9.1,
Expand All @@ -74,7 +74,7 @@ library
executable sample_shapes
main-is: sample_shapes.hs
hs-source-dirs: samples
build-depends: base >= 4.6,
build-depends: base >= 4.6 && < 4.9,
GLFW-b >= 1.4 && < 1.4.7,
GLUtil >= 0.7,
OpenGL > 2.9.1,
Expand All @@ -85,7 +85,7 @@ executable sample_shapes
executable sample_scheduler
main-is: sample_scheduler.hs
hs-source-dirs: samples
build-depends: base >= 4.6,
build-depends: base >= 4.6 && < 4.9,
GLFW-b >= 1.4 && < 1.4.7,
GLUtil >= 0.7,
OpenGL > 2.9.1,
Expand All @@ -97,7 +97,7 @@ executable sample_scheduler
executable sample_sprite
main-is: sample_sprite.hs
hs-source-dirs: samples
build-depends: base >= 4.6,
build-depends: base >= 4.6 && < 4.9,
GLFW-b >= 1.4 && < 1.4.7,
GLUtil >= 0.7,
OpenGL > 2.9.1,
Expand All @@ -109,7 +109,7 @@ executable sample_sprite
executable sample_spritesheet
main-is: sample_spritesheet.hs
hs-source-dirs: samples
build-depends: base >= 4.6,
build-depends: base >= 4.6 && < 4.9,
GLFW-b >= 1.4 && < 1.4.7,
GLUtil >= 0.7,
OpenGL > 2.9.1,
Expand All @@ -121,7 +121,7 @@ executable sample_spritesheet
executable sample_asteroids
main-is: sample_asteroids.hs
hs-source-dirs: samples
build-depends: base >= 4.6,
build-depends: base >= 4.6 && < 4.9,
GLFW-b >= 1.4 && < 1.4.7,
GLUtil >= 0.7,
OpenGL > 2.9.1,
Expand Down

0 comments on commit d0a0cc4

Please sign in to comment.