Skip to content

Commit

Permalink
Bump to 0.14.2, update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgm committed Jun 24, 2024
1 parent d9fa709 commit 97f6539
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Revision history for skylighting and skylighting-core

## 0.14.2

* Add `loadValidSyntaxesFromDir` (Kevin Quick) [API change].
The `loadSyntaxesFromDir` function is an all-or-nothing function:
a single invalid file results in a error and *no* loaded syntaxes.
This adds the `loadValidSyntaxesFromDir`, which is resilient
against individual syntax file load failures. It returns a map
of the failure messages, and the SyntaxMap that is created from
all the successful parsing.

## 0.14.1.2

* Add terraform syntax (#190).
Expand Down
4 changes: 2 additions & 2 deletions skylighting-core/skylighting-core.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: skylighting-core
version: 0.14.1.2
version: 0.14.2
synopsis: syntax highlighting library
description: Skylighting is a syntax highlighting library.
It derives its tokenizers from XML syntax
Expand All @@ -21,7 +21,7 @@ license: BSD3
license-file: LICENSE
author: John MacFarlane
maintainer: [email protected]
copyright: (C) 2016-2018 John MacFarlane
copyright: (C) 2016-2024 John MacFarlane
category: Text
build-type: Simple
extra-source-files: README.md
Expand Down
6 changes: 3 additions & 3 deletions skylighting/skylighting.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: skylighting
version: 0.14.1.2
version: 0.14.2
synopsis: syntax highlighting library
description: Skylighting is a syntax highlighting library with
support for over one hundred languages. It derives
Expand All @@ -21,7 +21,7 @@ license: GPL-2
license-file: LICENSE
author: John MacFarlane
maintainer: [email protected]
copyright: (C) 2016 John MacFarlane
copyright: (C) 2016-2024 John MacFarlane
category: Text
build-type: Simple
extra-doc-files: README.md
Expand Down Expand Up @@ -205,7 +205,7 @@ library
Skylighting.Syntax.Zsh
other-extensions: CPP
build-depends: base >= 4.8 && < 5.0,
skylighting-core == 0.14.1.2,
skylighting-core == 0.14.2,
skylighting-format-ansi >= 0.1 && < 0.2,
skylighting-format-context >= 0.1 && < 0.2,
skylighting-format-latex >= 0.1 && < 0.2,
Expand Down

0 comments on commit 97f6539

Please sign in to comment.