Skip to content
This repository has been archived by the owner on Oct 18, 2022. It is now read-only.

[✅] RELEASE (0.6.2) #27

Merged
merged 3 commits into from
Mar 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,26 @@
# 0.6.2

#### Major changes

- Only show the `init` task by default when the top-level `eucalypt` command is run outside a Eucalypt application directory. ([#26](https://github.com/eucalypt-framework/eucalypt/pull/26))

#### Minor changes

- Add a second CLI image showing the new `init` task when top-level `eucalypt` command is run outside a Eucalypt application directory. ([#26](https://github.com/eucalypt-framework/eucalypt/pull/26))
- Update CLI screenshot in README.md ([#25](https://github.com/eucalypt-framework/eucalypt/pull/25))

# 0.6.1

#### Major changes

- Fix LoadError originating from the use of the updated `sqlite3` gem version `1.4.0`, by changing the gem version specifier in the `Gemfile` to `~> 1.3.6`, making it more strict than the previous `~> 1.3` (#21)
- Remove `rake db:migrate` as default rake task for `eucalypt rake` command (#23)
- Add `task` argument to the `eucalypt rake` command for specifying rake tasks (#23)
- Fix LoadError originating from the use of the updated `sqlite3` gem version `1.4.0`, by changing the gem version specifier in the `Gemfile` to `~> 1.3.6`, making it more strict than the previous `~> 1.3` ([#21](https://github.com/eucalypt-framework/eucalypt/pull/21))
- Remove `rake db:migrate` as default rake task for `eucalypt rake` command ([#23](https://github.com/eucalypt-framework/eucalypt/pull/23))
- Add `task` argument to the `eucalypt rake` command for specifying rake tasks ([#23](https://github.com/eucalypt-framework/eucalypt/pull/23))

#### Minor changes

- Changed font on default index page from Alegreya to Signika (#22)
- Changed message on default index page from `It's alive!` to `It's running!` (#22)
- Changed font on default index page from Alegreya to Signika ([#22](https://github.com/eucalypt-framework/eucalypt/pull/22))
- Changed message on default index page from `It's alive!` to `It's running!` ([#22](https://github.com/eucalypt-framework/eucalypt/pull/22))

# 0.6.0

Expand Down
7 changes: 6 additions & 1 deletion lib/eucalypt/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
module Eucalypt
VERSION = '0.6.1'
VERSION = {
major: 0,
minor: 6,
patch: 2,
meta: nil
}.values.reject(&:nil?).map(&:to_s)*?.
end