# HG changeset patch # User Michael Granger # Date 1604371500 28800 # Mon Nov 02 18:45:00 2020 -0800 # Node ID 1220b06bb5ee667b329cdd3a0303d333f08b8d32 # Parent eb4be842eef38692af95713d79a6dec77833822e Bump the minor version, update history, fix docs diff --git a/.hgignore b/.hgignore --- a/.hgignore +++ b/.hgignore @@ -1,6 +1,6 @@ ChangeLog coverage/ -doc/ +docs/ pkg/ \.esproj/ \.lock$ diff --git a/History.md b/History.md --- a/History.md +++ b/History.md @@ -1,3 +1,22 @@ +# Release History for fluent_fixtures + +--- + +## v0.9.0 [2020-11-02] Michael Granger + +Improvements: + +- De-hoeify +- Update the Sequel example's bundle +- Bump Faker version to latest, fix usage +- Update for Ruby 2.7 +- Update project links (bitbucket -> sr.ht) + +Bugfixes: + +- Fix passing keywords as trailing hash + + ## v0.8.1 [2018-11-20] Michael Granger Bugfixes: diff --git a/LICENSE.txt b/LICENSE.txt --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2016 Michael Granger +Copyright (c) 2016-2020 Michael Granger Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the diff --git a/README.md b/README.md --- a/README.md +++ b/README.md @@ -46,6 +46,11 @@ This task will install dependencies, and do any other necessary setup for development. +## Author(s) + +* Michael Granger + + ## License Copyright (c) 2016-2020, Michael Granger diff --git a/Rakefile b/Rakefile --- a/Rakefile +++ b/Rakefile @@ -4,4 +4,6 @@ require 'rake/deveiate' -Rake::DevEiate.setup( 'fluent_fixtures' ) +Rake::DevEiate.setup( 'fluent_fixtures' ) do |project| + project.publish_to = 'deveiate:/usr/local/www/public/code' +end diff --git a/gem.deps.rb b/gem.deps.rb --- a/gem.deps.rb +++ b/gem.deps.rb @@ -3,7 +3,6 @@ gem 'faker', '~> 2.14' gem 'inflecto', '~> 0.0' gem 'loggability', '~> 0.17' -gem 'simplecov', '~> 0.19' group :development do gem 'rake-deveiate', '~> 0.15' diff --git a/lib/fluent_fixtures.rb b/lib/fluent_fixtures.rb --- a/lib/fluent_fixtures.rb +++ b/lib/fluent_fixtures.rb @@ -24,7 +24,7 @@ # Package version - VERSION = '0.8.1' + VERSION = '0.9.0' # Version control revision REVISION = %q$Revision$