Skip to content

Commit

Permalink
Release beam-core 0.9.1.0; beam-migrate, beam-postgres, beam-sqlite 0…
Browse files Browse the repository at this point in the history
….5.1.0
  • Loading branch information
kmicklas committed Jun 24, 2021
1 parent 77c4456 commit 8a37e63
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 5 deletions.
6 changes: 6 additions & 0 deletions beam-core/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.9.1.0

## Added features

* Improve error message when `asc_` or `desc_` is missing in `orderBy_`

# 0.9.0.0

## Removal of machine-dependent `Int`/`Word` instances
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.0.0
version: 0.9.1.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
10 changes: 10 additions & 0 deletions beam-migrate/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
# 0.5.1.0

## Added features

* Expose `IsNotNull` class

## Bug fixes

* Order log entries when verifying migration status

# 0.5.0.0

## Interface changes
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.0.0
version: 0.5.1.0
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
11 changes: 11 additions & 0 deletions beam-postgres/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# 0.5.1.0

## Added features

* `MonadBase` and `MonadBaseControl` instances for `Pg`

## Bug fixes

* Fix possible memory corruption by copying row data
* Remove invalid parentheses emitted by `pgUnnest`

# 0.5.0.0

## Interface changes
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.0.0
version: 0.5.1.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
7 changes: 6 additions & 1 deletion beam-sqlite/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# 0.5.1.0

## Added features

* `MonadBase` and `MonadBaseControl` instances for `SqliteM`

# 0.5.0.0

=======
## Interface changes

* Removed instances for machine-dependent ambiguous integer types `Int` and `Word`
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.0.0
version: 0.5.1.0
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 8a37e63

Please sign in to comment.