Skip to content

Commit 416bb1d

Browse files
Maintenance: Bump versions, update CHANGELOG
1 parent bf4d873 commit 416bb1d

File tree

5 files changed

+26
-6
lines changed

5 files changed

+26
-6
lines changed

CHANGELOG.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,23 @@
33

44
### HyperHaskell app bundle
55

6+
**v2.3.0** — Snapshot release.
7+
8+
* Add `~/.ghcup` directory to PATH by default.
9+
* Add `View` menu and zoom functionality.
10+
* Update Electron to version 10.1.5.
11+
612
**v2.2.0** — Snapshot release.
713

814
* Implement "Search path" field properly.
915
* Add "Open Recent…" menu item on macOS.
1016

11-
* Update Electron to version 3.1.8
17+
* Update Electron to version 3.1.8.
1218
* Support for packaging binaries on Windows (by Nicholas Silvestrin).
1319

1420
* Fix "Save As…" menu item to work correctly again.
1521
* Fix bug where no new input cell would be created when evaluating the last one.
1622

17-
1823
**v2.1.0** — Snapshot release.
1924

2025
* Upgrade file format to version `0.2.1.0`.
@@ -36,6 +41,11 @@
3641

3742
### `hyper-haskell-server` package
3843

44+
**v0.2.3.0**
45+
46+
* Compatibility with GHC 8.8.
47+
* Remove support for `hyper == 0.1.*`.
48+
3949
**v0.2.2.0**
4050

4151
* Add `:type` command for querying type signatures.
@@ -61,6 +71,11 @@
6171

6272
### `hyper-extra` package
6373

74+
**v0.2.0.0**
75+
76+
* Add preliminary support for the `svg-builder` package.
77+
* Compatibility with GHC 8.8
78+
6479
**v0.1.1.0**
6580

6681
* Add preliminary support for the `QuickCheck` package.
@@ -75,6 +90,11 @@
7590

7691
### `hyper` package
7792

93+
**v0.2.1.0**
94+
95+
* Add `addFinalizerSession` function that allows running an IO action when the worksheet is reloaded.
96+
* Compatibility with GHC 8.8.
97+
7898
**v0.2.0.0**
7999

80100
* Remove `displayIO` class.

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "HyperHaskell",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"main": "src/main.js",
55
"devDependencies": {
66
"electron": "^10.1.5"

haskell/hyper-extra/hyper-extra.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ Library
3030
, diagrams-svg >= 1.4 && < 1.5
3131
, svg-builder == 0.1.*
3232
, QuickCheck >= 2.3.0.2 && < 2.14
33-
, hyper >= 0.1 && < 0.3
33+
, hyper >= 0.2 && < 0.3
3434
exposed-modules: Hyper.Extra

haskell/hyper-haskell-server/hyper-haskell-server.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: hyper-haskell-server
2-
Version: 0.2.2.1
2+
Version: 0.2.3.0
33
Synopsis: Server back-end for the HyperHaskell graphical Haskell interpreter
44
Description:
55
This package is part of the /HyperHaskell/ project and provides

haskell/hyper/hyper.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: hyper
2-
Version: 0.2.0.1
2+
Version: 0.2.1.0
33
Synopsis: Display class for the HyperHaskell graphical Haskell interpreter
44
Description:
55
This package is part of the /HyperHaskell/ project and provides

0 commit comments

Comments
 (0)