Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
nboldi committed Jan 31, 2017
1 parent 1bedeb0 commit f249ad0
Show file tree
Hide file tree
Showing 9 changed files with 47 additions and 47 deletions.
14 changes: 7 additions & 7 deletions demo/haskell-tools-demo.cabal
@@ -1,5 +1,5 @@
name: haskell-tools-demo
version: 0.4.1.3
version: 0.5.0.0
synopsis: A web-based demo for Haskell-tools Refactor.
description: Allows websocket clients to connect and performs refactorings on demand. The clients maintain a continous connection with the server, sending changes in the source files. When a refactor request is received, it performs the changes and sends the modified source files to the client.
homepage: https://github.com/haskell-tools/haskell-tools
Expand Down Expand Up @@ -33,18 +33,18 @@ library
, ghc >= 8.0 && < 8.1
, ghc-paths >= 0.1 && < 0.2
, filepath >= 1.4 && < 1.5
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-backend-ghc >= 0.4 && < 0.5
, haskell-tools-prettyprint >= 0.4 && < 0.5
, haskell-tools-refactor >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
, haskell-tools-backend-ghc >= 0.5 && < 0.6
, haskell-tools-prettyprint >= 0.5 && < 0.6
, haskell-tools-refactor >= 0.5 && < 0.6
default-language: Haskell2010

executable ht-demo
main-is: Main.hs
hs-source-dirs: exe
ghc-options: -with-rtsopts=-M1500m -O2
build-depends: base >= 4.9 && < 4.10
, haskell-tools-demo >= 0.4 && < 0.5
, haskell-tools-demo >= 0.5 && < 0.6
default-language: Haskell2010

test-suite haskell-tools-demo-tests
Expand All @@ -62,5 +62,5 @@ test-suite haskell-tools-demo-tests
, network >= 2.6 && < 2.7
, websockets >= 0.10 && < 0.11
, aeson >= 1.0 && < 1.2
, haskell-tools-demo >= 0.4 && < 0.5
, haskell-tools-demo >= 0.5 && < 0.6
default-language: Haskell2010
2 changes: 1 addition & 1 deletion src/ast/haskell-tools-ast.cabal
@@ -1,5 +1,5 @@
name: haskell-tools-ast
version: 0.4.1.3
version: 0.5.0.0
synopsis: Haskell AST for efficient tooling
description: A representation of a Haskell Syntax tree that contain source-related and semantic annotations. These annotations help developer tools to work with the defined program. The source information enables refactoring and program transformation tools to change the source code without losing the original format (layout, comments) of the source. Semantic information helps analyzing the program. The representation is different from the GHC's syntax tree. It contains information from all representations in GHC (different version of syntax trees, lexical and module-level information). The module is split up to put the representation of different language elements into different modules. Additionally, it contains the representation of semantic and source annotations, helper functions and generated instances for the representation of language elements. Because langauge elements may refer each other (there can be a pattern inside an expression in case of a pattern match and an expression inside a pattern if view patterns are enabled), we use hs-boot files to break up dependency cycles.

Expand Down
4 changes: 2 additions & 2 deletions src/backend-ghc/haskell-tools-backend-ghc.cabal
@@ -1,5 +1,5 @@
name: haskell-tools-backend-ghc
version: 0.4.1.3
version: 0.5.0.0
synopsis: Creating the Haskell-Tools AST from GHC's representations
description: This package collects information from various representations of a Haskell program in GHC. Basically GHC provides us with the parsed, the renamed and the type checked representation of the program, if it was type correct. Each version contains different information. For example, the renamed AST contains the unique names of the definitions, however, template haskell splices are already resolved and thus missing from that version of the AST. To get the final representation we perform a transformation on the parsed and renamed representation, and then use the type checked one to look up the types of the names. The whole transformation is defined in the `Modules` module. Other modules define the functions that convert elements of the GHC AST to our AST.
homepage: https://github.com/nboldi/haskell-tools
Expand Down Expand Up @@ -41,5 +41,5 @@ library
, split >= 0.2 && < 0.3
, template-haskell >= 2.11 && < 2.12
, ghc >= 8.0 && < 8.1
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
default-language: Haskell2010
14 changes: 7 additions & 7 deletions src/cli/haskell-tools-cli.cabal
@@ -1,5 +1,5 @@
name: haskell-tools-cli
version: 0.4.1.3
version: 0.5.0.0
synopsis: Command-line frontend for Haskell-tools Refact
description: Command-line frontend for Haskell-tools Refact. Not meant as a final product, only for demonstration purposes.
homepage: https://github.com/haskell-tools/haskell-tools
Expand Down Expand Up @@ -48,17 +48,17 @@ library
, ghc >= 8.0 && < 8.1
, ghc-paths >= 0.1 && < 0.2
, references >= 0.3 && < 0.4
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-prettyprint >= 0.4 && < 0.5
, haskell-tools-refactor >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
, haskell-tools-prettyprint >= 0.5 && < 0.6
, haskell-tools-refactor >= 0.5 && < 0.6
exposed-modules: Language.Haskell.Tools.Refactor.CLI
default-language: Haskell2010


executable ht-refact
ghc-options: -O2 -rtsopts
build-depends: base >= 4.9 && < 4.10
, haskell-tools-cli >= 0.4 && < 0.5
, haskell-tools-cli >= 0.5 && < 0.6
hs-source-dirs: exe
main-is: Main.hs
default-language: Haskell2010
Expand Down Expand Up @@ -91,7 +91,7 @@ test-suite haskell-tools-cli-tests
, tasty-hunit >= 0.9 && < 0.10
, directory >= 1.2 && < 1.4
, filepath >= 1.4 && < 2.0
, haskell-tools-cli >= 0.4 && < 0.5
, haskell-tools-cli >= 0.5 && < 0.6
, knob >= 0.1 && < 0.2
, bytestring >= 0.10 && < 0.11
default-language: Haskell2010
Expand All @@ -100,7 +100,7 @@ benchmark cli-benchmark
type: exitcode-stdio-1.0
ghc-options: -with-rtsopts=-M2g -O2
build-depends: base >= 4.9 && < 4.10
, haskell-tools-cli >= 0.4 && < 0.5
, haskell-tools-cli >= 0.5 && < 0.6
, criterion >= 1.1 && < 1.2
, time >= 1.6 && < 1.7
, aeson >= 1.0 && < 1.2
Expand Down
12 changes: 6 additions & 6 deletions src/daemon/haskell-tools-daemon.cabal
@@ -1,5 +1,5 @@
name: haskell-tools-daemon
version: 0.4.1.3
version: 0.5.0.0
synopsis: Background process for Haskell-tools refactor that editors can connect to.
description: Background process for Haskell-tools refactor that editors can connect to.
homepage: https://github.com/haskell-tools/haskell-tools
Expand Down Expand Up @@ -66,9 +66,9 @@ library
, ghc-paths >= 0.1 && < 0.2
, references >= 0.3.2 && < 1.0
, network >= 2.6 && < 3.0
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-prettyprint >= 0.4 && < 0.5
, haskell-tools-refactor >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
, haskell-tools-prettyprint >= 0.5 && < 0.6
, haskell-tools-refactor >= 0.5 && < 0.6
exposed-modules: Language.Haskell.Tools.Refactor.Daemon
, Language.Haskell.Tools.Refactor.Daemon.State
, Language.Haskell.Tools.Refactor.Daemon.PackageDB
Expand All @@ -78,7 +78,7 @@ library
executable ht-daemon
ghc-options: -O2
build-depends: base >= 4.9 && < 5.0
, haskell-tools-daemon >= 0.4 && < 0.5
, haskell-tools-daemon >= 0.5 && < 0.6
hs-source-dirs: exe
main-is: Main.hs
default-language: Haskell2010
Expand All @@ -99,5 +99,5 @@ test-suite haskell-tools-daemon-tests
, bytestring >= 0.10 && < 0.11
, network >= 2.6 && < 2.7
, aeson >= 1.0 && < 1.2
, haskell-tools-daemon >= 0.4 && < 0.5
, haskell-tools-daemon >= 0.5 && < 0.6
default-language: Haskell2010
12 changes: 6 additions & 6 deletions src/debug/haskell-tools-debug.cabal
@@ -1,5 +1,5 @@
name: haskell-tools-debug
version: 0.4.1.3
version: 0.5.0.0
synopsis: Debugging Tools for Haskell-tools
description: Debugging Tools for Haskell-tools
homepage: https://github.com/haskell-tools/haskell-tools
Expand All @@ -21,15 +21,15 @@ library
, references >= 0.3 && < 0.4
, ghc >= 8.0 && < 8.1
, ghc-paths >= 0.1 && < 0.2
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-backend-ghc >= 0.4 && < 0.5
, haskell-tools-refactor >= 0.4 && < 0.5
, haskell-tools-prettyprint >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
, haskell-tools-backend-ghc >= 0.5 && < 0.6
, haskell-tools-refactor >= 0.5 && < 0.6
, haskell-tools-prettyprint >= 0.5 && < 0.6
default-language: Haskell2010

executable ht-debug
build-depends: base >= 4.9 && < 5.0
, haskell-tools-debug >= 0.4 && < 0.5
, haskell-tools-debug >= 0.5 && < 0.6
hs-source-dirs: exe
main-is: Main.hs
default-language: Haskell2010
4 changes: 2 additions & 2 deletions src/prettyprint/haskell-tools-prettyprint.cabal
@@ -1,5 +1,5 @@
name: haskell-tools-prettyprint
version: 0.4.1.3
version: 0.5.0.0
synopsis: Pretty printing of Haskell-Tools AST
description: Converts the Haskell-Tools AST to text. Prepares the AST for this conversion. If the AST was created from the GHC AST this pretty printing will result in the original source code. Generated AST parts will get the default formatting. Works using the source annotations that are present in the AST. Creates a rose tree first to simplify the conversion.
homepage: https://github.com/haskell-tools/haskell-tools
Expand Down Expand Up @@ -30,5 +30,5 @@ library
, uniplate >= 1.6 && < 1.7
, split >= 0.2 && < 0.3
, ghc >= 8.0 && < 8.1
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
default-language: Haskell2010
20 changes: 10 additions & 10 deletions src/refactor/haskell-tools-refactor.cabal
@@ -1,5 +1,5 @@
name: haskell-tools-refactor
version: 0.4.1.3
version: 0.5.0.0
synopsis: Refactoring Tool for Haskell
description: Contains a set of refactorings based on the Haskell-Tools framework to easily transform a Haskell program. For the descriptions of the implemented refactorings, see the homepage.
homepage: https://github.com/haskell-tools/haskell-tools
Expand Down Expand Up @@ -85,10 +85,10 @@ library
, template-haskell >= 2.11 && < 2.12
, ghc >= 8.0 && < 8.1
, Cabal >= 1.24 && < 1.25
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-backend-ghc >= 0.4 && < 0.5
, haskell-tools-rewrite >= 0.4 && < 0.5
, haskell-tools-prettyprint >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
, haskell-tools-backend-ghc >= 0.5 && < 0.6
, haskell-tools-rewrite >= 0.5 && < 0.6
, haskell-tools-prettyprint >= 0.5 && < 0.6
default-language: Haskell2010

test-suite haskell-tools-test
Expand All @@ -113,11 +113,11 @@ test-suite haskell-tools-test
, ghc >= 8.0 && < 8.1
, ghc-paths >= 0.1 && < 0.2
, Cabal >= 1.24 && < 1.25
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-backend-ghc >= 0.4 && < 0.5
, haskell-tools-rewrite >= 0.4 && < 0.5
, haskell-tools-prettyprint >= 0.4 && < 0.5
, haskell-tools-refactor >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
, haskell-tools-backend-ghc >= 0.5 && < 0.6
, haskell-tools-rewrite >= 0.5 && < 0.6
, haskell-tools-prettyprint >= 0.5 && < 0.6
, haskell-tools-refactor >= 0.5 && < 0.6
-- libraries used by the examples
, old-time >= 1.1 && < 1.2
, polyparse >= 1.12 && < 1.13
Expand Down
12 changes: 6 additions & 6 deletions src/rewrite/haskell-tools-rewrite.cabal
@@ -1,5 +1,5 @@
name: haskell-tools-rewrite
version: 0.4.1.3
version: 0.5.0.0
synopsis: Facilities for generating new parts of the Haskell-Tools AST
description: Contains utility functions to generate parts of the Haskell-Tools AST. Generates these elements to be compatible with the source annotations that are already present on the AST. The package is divided into modules based on which language elements can the given module generate. This packages should be used during the transformations to generate parts of the new AST.
homepage: https://github.com/haskell-tools/haskell-tools
Expand Down Expand Up @@ -45,8 +45,8 @@ library
, containers >= 0.5 && < 0.6
, references >= 0.3 && < 0.4
, ghc >= 8.0 && < 8.1
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-prettyprint >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
, haskell-tools-prettyprint >= 0.5 && < 0.6
default-language: Haskell2010

test-suite haskell-tools-rewrite-tests
Expand All @@ -59,7 +59,7 @@ test-suite haskell-tools-rewrite-tests
, tasty-hunit >= 0.9 && < 0.10
, directory >= 1.2 && < 1.4
, filepath >= 1.4 && < 2.0
, haskell-tools-ast >= 0.4 && < 0.5
, haskell-tools-prettyprint >= 0.4 && < 0.5
, haskell-tools-rewrite >= 0.4 && < 0.5
, haskell-tools-ast >= 0.5 && < 0.6
, haskell-tools-prettyprint >= 0.5 && < 0.6
, haskell-tools-rewrite >= 0.5 && < 0.6
default-language: Haskell2010

0 comments on commit f249ad0

Please sign in to comment.