diff --git a/beam-core/ChangeLog.md b/beam-core/ChangeLog.md index 7edbd0f9..9ca4cc41 100644 --- a/beam-core/ChangeLog.md +++ b/beam-core/ChangeLog.md @@ -1,17 +1,23 @@ +# 0.10.2.0 + +## Added features + + * Added support for creating database schemas and associated tables with `createDatabaseSchema` and `createTableWithSchema` (#716). + # 0.10.1.0 -# Added features +## Added features * Allow embedding database types * Loosen some version bounds # 0.10.0.0 -# Bug fixes +## Bug fixes * Make sure lateral join names do not overlap -# Addded features +## Addded features * Add `runSelectReturningFirst` * `IN (SELECT ...)` syntax via `inQuery_` diff --git a/beam-core/beam-core.cabal b/beam-core/beam-core.cabal index f2a037f5..ab3fb1ff 100644 --- a/beam-core/beam-core.cabal +++ b/beam-core/beam-core.cabal @@ -2,7 +2,7 @@ -- see http://haskell.org/cabal/users-guide/ name: beam-core -version: 0.10.1.0 +version: 0.10.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 diff --git a/beam-migrate/ChangeLog.md b/beam-migrate/ChangeLog.md index f38110aa..5f53e827 100644 --- a/beam-migrate/ChangeLog.md +++ b/beam-migrate/ChangeLog.md @@ -1,12 +1,18 @@ +# 0.5.3.0 + +## Added features + +* Added support for creating database schemas and associated tables with `createDatabaseSchema` and `createTableWithSchema` (#716). + # 0.5.2.1 -# Added features +## Added features * Loosen some version bounds # 0.5.2.0 -# Addded features +## Addded features * `IN (SELECT ...)` syntax via `inSelectE` diff --git a/beam-migrate/beam-migrate.cabal b/beam-migrate/beam-migrate.cabal index 2de79642..1696f55d 100644 --- a/beam-migrate/beam-migrate.cabal +++ b/beam-migrate/beam-migrate.cabal @@ -1,5 +1,5 @@ name: beam-migrate -version: 0.5.2.1 +version: 0.5.3.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 diff --git a/beam-postgres/ChangeLog.md b/beam-postgres/ChangeLog.md index d53bd021..c6cb4fb3 100644 --- a/beam-postgres/ChangeLog.md +++ b/beam-postgres/ChangeLog.md @@ -1,8 +1,9 @@ -# Unreleased +# 0.5.4.0 ## Added features * Better error messages on column type mismatches (#696). + * Added support for creating database schemas and associated tables with `createDatabaseSchema` and `createTableWithSchema` (#716). ## Documentation diff --git a/beam-postgres/beam-postgres.cabal b/beam-postgres/beam-postgres.cabal index f0e56485..81fa8e5a 100644 --- a/beam-postgres/beam-postgres.cabal +++ b/beam-postgres/beam-postgres.cabal @@ -1,5 +1,5 @@ name: beam-postgres -version: 0.5.3.1 +version: 0.5.4.0 synopsis: Connection layer between beam and postgres description: Beam driver for , an advanced open-source RDBMS homepage: https://haskell-beam.github.io/beam/user-guide/backends/beam-postgres