From 27efa6b8d5ec4d7431cb8661c0673ae9bb93686e Mon Sep 17 00:00:00 2001 From: scytherswings Date: Thu, 6 Dec 2018 23:48:32 -0500 Subject: [PATCH] bump version of gem --- CHANGELOG.md | 8 ++++++++ lib/pgdice/version.rb | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b591964..0f3fdc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +## [v0.4.0] : 2018-12-06 +### Changes + - Add `only:` option to `assert_tables` so users can assert on only `past` + or `future` tables if they wish. + - Fix #21 by adding documentation on how to migrate existing data from + unpartitioned tables + + ## [v0.3.3] : 2018-11-30 ### Changes - Do not eagerly initialize the `pg_connection` as this can cause some normal diff --git a/lib/pgdice/version.rb b/lib/pgdice/version.rb index e04459b..b7f3969 100644 --- a/lib/pgdice/version.rb +++ b/lib/pgdice/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module PgDice - VERSION = '0.3.3' + VERSION = '0.4.0' end