Skip to content

Commit

Permalink
Release 1.4 (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocharles committed Aug 17, 2022
1 parent 38a9288 commit 5686bd8
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
23 changes: 23 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# 1.4.0.0 (2002-08-17)

## Breaking changes

* The behavior of `greatest`/`least` has been corrected, and was previously flipped. ([#183](https://github.com/circuithub/rel8/pull/183))

## New features

* `NullTable`/`HNull` have been added. This is an alternative to `MaybeTable` that doesn't use a tag columns. It's less flexible (no `Functor` or `Applicative` instance) and is meaningless when used with a table that has no non-nullable columns (so nesting `NullTable` is redundant). But in situations where the underlying `Table` does have non-nullable columns, it can losslessly converted to and from `MaybeTable`. It is useful for embedding into a base table when you don't want to store the extra tag column in your schema. ([#173](https://github.com/circuithub/rel8/pull/173))
* Add `fromMaybeTable`. ([#179](https://github.com/circuithub/rel8/pull/179))
* Add `alignMaybeTable`. ([#196](https://github.com/circuithub/rel8/pull/196))

## Improvements

* Optimize implementation of `AltTable` for `Tabulation` ([#178](https://github.com/circuithub/rel8/pull/178))

## Other

* Documentation improvements for `HADT`. ([#177](https://github.com/circuithub/rel8/pull/177))
* Document example usage of `groupBy`. ([#184](https://github.com/circuithub/rel8/pull/184))
* Build with and require Opaleye >= 0.9.3.3. ([#190](https://github.com/circuithub/rel8/pull/190))
* Build with `hasql` 1.6. ([#195](https://github.com/circuithub/rel8/pull/195))

# 1.3.1.0 (2022-01-20)

## Other
Expand Down
2 changes: 1 addition & 1 deletion rel8.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 2.0
name: rel8
version: 1.3.1.0
version: 1.4.0.0
synopsis: Hey! Hey! Can u rel8?
license: BSD3
license-file: LICENSE
Expand Down

0 comments on commit 5686bd8

Please sign in to comment.