packages feed

remarks 0.1.10 → 0.1.11

raw patch · 3 files changed

+16/−7 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

README.md view
@@ -1,8 +1,8 @@ # `remarks` — A DSL for marking student work  [![License: BSD 3-Clause](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](LICENSE)-[![Travis CI (Linux + macOS) Status](https://travis-ci.org/oleks/remarks.svg)](https://travis-ci.org/oleks/remarks)-[![AppVeyor (Windows) Status"](https://ci.appveyor.com/api/projects/status/g0hviw442o2bl8yi?svg=true)](https://ci.appveyor.com/project/oleks/remarks)+[![Travis CI (Linux + macOS) Status](https://travis-ci.org/DIKU-EDU/remarks.svg)](https://travis-ci.org/DIKU-EDU/remarks)+[![AppVeyor (Windows) Status"](https://ci.appveyor.com/api/projects/status/g0hviw442o2bl8yi?svg=true)](https://ci.appveyor.com/project/DIKU-EDU/remarks)  When judging student performance, it is useful to have both small, composable, quantitative judgements, and qualitative remarks. This makes both spreadsheets@@ -34,7 +34,7 @@ These can be invoked using `remarks parse`, `remarks check`, and `remarks show`, respectively. -See [Issues](https://github.com/oleks/remarks/issues) for a roadmap. Feel free+See [Issues](https://github.com/DIKU-EDU/remarks/issues) for a roadmap. Feel free to add or fix a couple issues.  ## Usage@@ -67,7 +67,7 @@ ```  If you clone the repository, or [download the-sources](https://github.com/oleks/remarks/releases), you get two further+sources](https://github.com/DIKU-EDU/remarks/releases), you get two further options:  * If you are using the purely functional package manager
remarks.cabal view
@@ -1,8 +1,8 @@ name:                remarks-version:             0.1.10+version:             0.1.11 synopsis:            A DSL for marking student work description:         A DSL for marking student work; see README.md for further details.-homepage:            https://github.com/oleks/remarks#readme+homepage:            https://github.com/DIKU-EDU/remarks#readme license:             BSD3 license-file:        LICENSE author:              Oleks Shturmov <oleks@oleks.info>, Michael Kirkedal@@ -63,4 +63,4 @@  source-repository head   type:     git-  location: https://github.com/oleks/remarks+  location: https://github.com/DIKU-EDU/remarks
src/Ast.hs view
@@ -1,5 +1,14 @@ {-# LANGUAGE DeriveGeneric #-} +{-|+Module      : Ast+Description : The remarks abstract-syntax tree+Copyright   : (c) DIKU, 2016-present+License     : EUPLv1.1+Stability   : experimental++All @.mrk@ files are parsed as a list of 'Judgement's, as defined below.+-} module Ast where  import Text.PrettyPrint.GenericPretty