Skip to content

Commit

Permalink
0.4.0.1: bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DougBurke committed Jun 3, 2024
1 parent 8657620 commit b757e2f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
5 changes: 5 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog for vega-view

## 0.4.0.1

Bump dependencies for aeson, bytestring, filepath, scotty, and
text.

## 0.4.0.0

Support aeson 2.0. There is no functional change worthy of a major
Expand Down
3 changes: 2 additions & 1 deletion app/Main.hs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ import Text.Blaze.Html5 ((!))
import Text.Blaze.Html.Renderer.Text (renderHtml)
import Web.Scotty (ScottyM, ActionM
, get, html, json
, notFound, param
, notFound
, param -- deprecated in Scotty 0.20
, redirect, regex
, status, scotty
, text)
Expand Down
14 changes: 7 additions & 7 deletions vega-view.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: vega-view
version: 0.4.0.0
version: 0.4.0.1
synopsis: Easily view Vega or Vega-Lite visualizations.
description: A web server that is used to view all the Vega and Vega-Lite
specifications in a directory, or sub-directory. It is similar
Expand All @@ -12,7 +12,7 @@ homepage: https://github.com/DougBurke/vega-view#vega-view
bug-reports: https://github.com/DougBurke/vega-view/issues
author: Douglas Burke
maintainer: [email protected]
copyright: 2019, 2020, 2021 Douglas Burke
copyright: 2019, 2020, 2021, 2024 Douglas Burke
license: BSD3
license-file: LICENSE
build-type: Simple
Expand All @@ -35,16 +35,16 @@ executable vegaview
app
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson >= 1.1 && < 2.1
aeson >= 1.1 && < 2.3
, base >= 4.9 && <5
, blaze-html >= 0.7 && < 0.10
, blaze-markup >= 0.6 && < 0.9
, bytestring >= 0.10 && < 0.11
, bytestring >= 0.10 && < 0.13
, directory >= 1.2.5.0 && < 1.4
, filepath >= 1.4 && < 1.5
, filepath >= 1.4 && < 1.6
, http-types >= 0.9 && < 0.13
, scotty >= 0.11 && < 0.13
, text >= 1.2 && < 1.3
, scotty >= 0.11 && < 0.23
, text >= 1.2 && < 2.2
, unordered-containers >= 0.2 && < 0.3

default-language: Haskell2010

0 comments on commit b757e2f

Please sign in to comment.