This repository was archived by the owner on Apr 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 457
semantic-source-0.0.0.1/ghc-8.8.1 #307
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
5b75abb
Loosen the bound on hashable.
robrix 0c31921
Add 8.8.1 to the tested-with field.
robrix 610133f
Turn off the no missing deriving strategies warning.
robrix f51eec5
Add a changelog.
robrix f865da9
Spacing.
robrix 5f8288e
Tidy up.
robrix 6918d47
Bump the version to 0.0.0.1.
robrix 93746a4
Add notes to the changelog.
robrix File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# 0.0.0.1 | ||
|
||
- Loosens the upper bound on `hashable`. | ||
- Adds support for GHC 8.8.1. | ||
|
||
|
||
# 0.0.0.0 | ||
|
||
Initial release |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
cabal-version: 2.4 | ||
|
||
name: semantic-source | ||
version: 0.0.0.0 | ||
version: 0.0.0.1 | ||
synopsis: Types and functionality for working with source code | ||
description: Types and functionality for working with source code (program text). | ||
homepage: https://github.com/github/semantic/tree/master/semantic-source#readme | ||
|
@@ -15,11 +15,12 @@ category: Data | |
build-type: Simple | ||
stability: alpha | ||
extra-source-files: | ||
CHANGELOG.md | ||
README.md | ||
|
||
|
||
tested-with: | ||
GHC == 8.6.5 | ||
GHC == 8.8.1 | ||
|
||
common common | ||
default-language: Haskell2010 | ||
|
@@ -35,6 +36,8 @@ common common | |
-Wno-missed-specialisations | ||
-Wno-all-missed-specialisations | ||
-Wno-star-is-type | ||
if (impl(ghc >= 8.8)) | ||
ghc-options: -Wno-missing-deriving-strategies | ||
|
||
library | ||
import: common | ||
|
@@ -43,15 +46,13 @@ library | |
Source.Range | ||
Source.Source | ||
Source.Span | ||
-- other-modules: | ||
-- other-extensions: | ||
build-depends: | ||
aeson ^>= 1.4.2.0 | ||
, base >= 4.12 && < 5 | ||
, bytestring ^>= 0.10.8.2 | ||
, deepseq ^>= 1.4.4.0 | ||
, generic-monoid ^>= 0.1.0.0 | ||
, hashable ^>= 1.2.7.0 | ||
, hashable >= 1.2.7 && < 1.4 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
, semilattices ^>= 0.0.0.3 | ||
, text ^ 42C7 >= 1.2.3.1 | ||
hs-source-dirs: src | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’m testing this locally until such time as the rest of the project can use 8.8.1.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.