diff --git a/CHANGELOG.md b/CHANGELOG.md index c5dd6e2..76c2608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## v1.5.0 - 2019-04-29 + +- Fixed and written tests for transaction handling + ([#34](https://github.com/go-gormigrate/gormigrate/pull/34), [#10](https://github.com/go-gormigrate/gormigrate/issues/10)). + Enabling transation is recommend, but only supported for databases that + support DDL transactions (PostgreSQL, Microsoft SQL Server and SQLite). +- Making the code more safe by checking more errors + ([#35](https://github.com/go-gormigrate/gormigrate/pull/35)). + ## v1.4.0 - 2019-02-03 - Allow an empty migration list if a `InitSchema` function is defined diff --git a/README.md b/README.md index 3214a0a..b79fc88 100644 --- a/README.md +++ b/README.md @@ -5,9 +5,9 @@ [![Build Status](https://travis-ci.org/go-gormigrate/gormigrate.svg?branch=master)](https://travis-ci.org/go-gormigrate/gormigrate) [![Build status](https://ci.appveyor.com/api/projects/status/89e414sklbwefyyp?svg=true)](https://ci.appveyor.com/project/andreynering/gormigrate) -Gormigrate is a migration helper for [Gorm][gorm]. +Gormigrate is a minimalistic migration helper for [Gorm][gorm]. Gorm already has useful [migrate functions][gormmigrate], just misses -proper schema versioning and rollback capabilities. +proper schema versioning and migration rollback support. ## Supported databases