From 13d6494871e9c4e0ed378cb1e296a94208904fdf Mon Sep 17 00:00:00 2001 From: Nate Vick Date: Sat, 8 Aug 2020 07:15:15 -0700 Subject: [PATCH 1/2] Update Changelog --- CHANGELOG.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b67ab08..ed02763 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,14 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [Unreleased] ### Added ### Changed -- default to exposing only necessary ports [PR26](https://github.com/hintmedia/railsdock/pull/26) -- move most config to compose file [PR28](https://github.com/hintmedia/railsdock/pull/28) ### Deprecated ### Removed ### Fixed -- handle new apps with no schema.rb or structure.sql [I22](https://github.com/hintmedia/railsdock/issues/22) [PR25](https://github.com/hintmedia/railsdock/pull/25) ### Security +## [0.4.0] - 08-08-2020 +### Changed +- default to exposing only necessary ports [PR26](https://github.com/hintmedia/railsdock/pull/26) +- move most config to compose file [PR28](https://github.com/hintmedia/railsdock/pull/28) +### Fixed +- handle new apps with no schema.rb or structure.sql [I22](https://github.com/hintmedia/railsdock/issues/22) [PR25](https://github.com/hintmedia/railsdock/pull/25) + ## [0.3.1] - 07-20-2020 ### Fixed - command in docker-compose template [PR21](https://github.com/hintmedia/railsdock/pull/21) From 461b19e31a09fdadf89a4e3110eb7028ae5c2ac5 Mon Sep 17 00:00:00 2001 From: Nate Vick Date: Sat, 8 Aug 2020 07:15:35 -0700 Subject: [PATCH 2/2] Bump version --- Gemfile.lock | 4 ++-- lib/railsdock/version.rb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 2efea7c..1fd71d6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - railsdock (0.3.1) + railsdock (0.4.0) bundler (~> 2.0) pastel (~> 0.7.2) railties (>= 4.2, < 6.1) @@ -44,7 +44,7 @@ GEM diff-lcs (1.3) equatable (0.6.1) erubi (1.9.0) - i18n (1.8.4) + i18n (1.8.5) concurrent-ruby (~> 1.0) loofah (2.6.0) crass (~> 1.0.2) diff --git a/lib/railsdock/version.rb b/lib/railsdock/version.rb index 02bd9a2..767dda6 100644 --- a/lib/railsdock/version.rb +++ b/lib/railsdock/version.rb @@ -1,3 +1,3 @@ module Railsdock - VERSION = '0.3.1'.freeze + VERSION = '0.4.0'.freeze end