10000 semantic-source 0.2.0.1 by robrix · Pull Request #713 · github/semantic · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

semantic-source 0.2.0.1 #713

Merged
merged 6 commits into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/haskell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ jobs:
run: |
cabal v2-update
cabal v2-configure --project-file=cabal.project.ci --disable-optimization --enable-tests --write-ghc-environment-files=always -j2
cd semantic-source && cabal v2-configure --project-file=cabal.project.ci --disable-optimization --enable-tests --write-ghc-environment-files=always -j2

- name: Restore from cache
run: ./cabal-cache sync-from-archive --threads=2 --archive-uri=dist-cache || true
Expand Down
1 change: 0 additions & 1 deletion semantic-analysis/src/Analysis/Syntax.hs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ import Control.Exception
import Control.Monad (guard)
import Control.Monad.IO.Class
import qualified Data.Aeson as A
import qualified Data.Aeson.Internal as A
import qualified Data.Aeson.Parser as A
import qualified Data.Aeson.Types as A
import qualified Data.ByteString.Lazy as B
Expand Down
5 changes: 5 additions & 0 deletions semantic-source/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.2.0.1

- Support ghc 9.4.


# 0.2.0.0

- Finds languages for `FilePath`s.
Expand Down
6 changes: 3 additions & 3 deletions semantic-source/semantic-source.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: 2.4

name: semantic-source
version: 0.2.0.0
version: 0.2.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
Expand All @@ -14,7 +14,7 @@ copyright: (c) 2020 GitHub, Inc.
category: Data
build-type: Simple
stability: alpha
6E7B extra-source-files:
extra-doc-files:
CHANGELOG.md
README.md

Expand Down Expand Up @@ -62,7 +62,7 @@ library
, bytestring >= 0.10.8.2 && < 0.13
, deepseq ^>= 1.4.4.0
, containers ^>= 0.6.2
, hashable >= 1.2.7 && < 1.4
, hashable >= 1.2.7 && < 1.5
, lingo ^>= 0.5.0.3
, semilattices ^>= 0.0.0.3
, text ^>= 1.2.3.2
Expand Down
0