Bump the minor version, update history, fix docs
7 files changed, 30 insertions(+), 5 deletions(-)

M .hgignore
M History.md
M LICENSE.txt
M README.md
M Rakefile
M gem.deps.rb
M lib/fluent_fixtures.rb
M .hgignore +1 -1
@@ 1,6 1,6 @@ 
 ChangeLog
 coverage/
-doc/
+docs/
 pkg/
 \.esproj/
 \.lock$

          
M History.md +19 -0
@@ 1,3 1,22 @@ 
+# Release History for fluent_fixtures
+
+---
+
+## v0.9.0 [2020-11-02] Michael Granger <ged@FaerieMUD.org>
+
+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 <ged@FaerieMUD.org>
 
 Bugfixes:

          
M LICENSE.txt +1 -1
@@ 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

          
M README.md +5 -0
@@ 46,6 46,11 @@ After checking out the source, run:
 This task will install dependencies, and do any other necessary setup for development.
 
 
+## Author(s)
+
+* Michael Granger <ged@faeriemud.org>
+
+
 ## License
 
 Copyright (c) 2016-2020, Michael Granger

          
M Rakefile +3 -1
@@ 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

          
M gem.deps.rb +0 -1
@@ 3,7 3,6 @@ source 'https://rubygems.org/'
 gem 'faker', '~> 2.14'
 gem 'inflecto', '~> 0.0'
 gem 'loggability', '~> 0.17'
-gem 'simplecov', '~> 0.19'
 
 group :development do
 	gem 'rake-deveiate', '~> 0.15'

          
M lib/fluent_fixtures.rb +1 -1
@@ 24,7 24,7 @@ module FluentFixtures
 
 
 	# Package version
-	VERSION = '0.8.1'
+	VERSION = '0.9.0'
 
 	# Version control revision
 	REVISION = %q$Revision$