Skip to content

Commit

Permalink
Release beam-core 0.9.2.0, beam-migrate 0.5.1.1, beam-postgres 0.5.2.…
Browse files Browse the repository at this point in the history
…0, beam-sqlite 0.5.1.1
  • Loading branch information
kmicklas committed Jan 18, 2022
1 parent 254d02d commit 09f2ade
Show file tree
Hide file tree
Showing 8 changed files with 41 additions and 4 deletions.
7 changes: 7 additions & 0 deletions beam-core/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.9.2.0

## Added features

* Heterogeneous variants of `like_` and `similarTo_`: `like_'` and `similarTo_'`
* GHC 9.2 and 9.0 support

# 0.9.1.0

## Added features
Expand Down
2 changes: 1 addition & 1 deletion beam-core/beam-core.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
-- see http://haskell.org/cabal/users-guide/

name: beam-core
version: 0.9.1.0
version: 0.9.2.0
synopsis: Type-safe, feature-complete SQL query and manipulation interface for Haskell
description: Beam is a Haskell library for type-safe querying and manipulation of SQL databases.
Beam is modular and supports various backends. In order to use beam, you will need to use
Expand Down
6 changes: 6 additions & 0 deletions beam-migrate/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.5.1.1

## Added features

* GHC 9.2 and 9.0 support

# 0.5.1.0

## Added features
Expand Down
2 changes: 1 addition & 1 deletion beam-migrate/beam-migrate.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: beam-migrate
version: 0.5.1.0
version: 0.5.1.1
synopsis: SQL DDL support and migrations support library for Beam
description: This package provides type classes to allow backends to implement
SQL DDL support for beam. This allows you to use beam syntax to
Expand Down
14 changes: 14 additions & 0 deletions beam-postgres/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# 0.5.2.0

## Added features

* New `conduit` streaming variants which work directly in `MonadResource`
* Heterogeneous variant of `ilike_`: `ilike_'`
* Postgres-specific `EXTRACT` fields
* GHC 9.2 and 9.0 support

## Bug fixes

* Throw correct exception for row errors in `conduit` implementation
* Support emitting UUID values in context where type cannot be inferred by Postgres

# 0.5.1.0

## Added features
Expand Down
2 changes: 1 addition & 1 deletion beam-postgres/beam-postgres.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: beam-postgres
version: 0.5.1.0
version: 0.5.2.0
synopsis: Connection layer between beam and postgres
description: Beam driver for <https://www.postgresql.org/ PostgreSQL>, an advanced open-source RDBMS
homepage: https://haskell-beam.github.io/beam/user-guide/backends/beam-postgres
Expand Down
10 changes: 10 additions & 0 deletions beam-sqlite/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.5.1.1

## Added features

* GHC 9.2 and 9.0 support

## Bug fixes

* Support inserting default values for all columns (except with upsert)

# 0.5.1.0

## Added features
Expand Down
2 changes: 1 addition & 1 deletion beam-sqlite/beam-sqlite.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: beam-sqlite
version: 0.5.1.0
version: 0.5.1.1
synopsis: Beam driver for SQLite
description: Beam driver for the <https://sqlite.org/ SQLite> embedded database.
See <https://haskell-beam.github.io/beam/user-guide/backends/beam-sqlite/ here>
Expand Down

0 comments on commit 09f2ade

Please sign in to comment.