Skip to content

Commit

Permalink
Changelog for release 0.4.4.0 (#107)
Browse files Browse the repository at this point in the history
* Changelog for release 0.4.4.0

* Add CI config

* Narrow the github CI down to ubuntu-latest and remove circleci

---------

Co-authored-by: Claudio Bley <claudio.bley@tweag.io>
  • Loading branch information
blackgnezdo and avdv authored Dec 21, 2023
1 parent 20ff70b commit c6828da
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 79 deletions.
69 changes: 0 additions & 69 deletions .circleci/config.yml

This file was deleted.

9 changes: 0 additions & 9 deletions .circleci/install-stack.sh

This file was deleted.

30 changes: 30 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Continuous Integration

on:
push:

jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
ghc: ["9.0", "9.2", "9.4", "9.6"]
env:
STACK_YAML: stack-${{ matrix.ghc }}.yaml
runs-on: ${{ matrix.os }}
steps:
# 1. checkout
- uses: actions/checkout@v4

# cache ~/.stack and .stack work, using matrix dimensions as keys
- uses: actions/cache@v3
with:
path: |
~/.stack
.stack-work
key: ${{ runner.os }}-stack-${{ matrix.ghc }}-${{ hashFiles(env.STACK_YAML) }}

# run stack test
- name: Run stack test
run: stack test --keep-going
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog for haskell-syntax

# 0.4.4.0
- Support GHC 9.6.

# 0.4.3.0
- Support GHC 9.2.

Expand Down
2 changes: 1 addition & 1 deletion package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# https://developers.google.com/open-source/licenses/bsd

name: ghc-source-gen
version: 0.4.3.0
version: 0.4.4.0
github: "google/ghc-source-gen"
license: BSD3
author: "Judah Jacobson"
Expand Down

0 comments on commit c6828da

Please sign in to comment.