diff --git a/CHANGELOG.md b/CHANGELOG.md index ac5f9a0..e8311f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] + +## [0.14.0] - 2016-6-21 ### Added - Added `Event#to_h` method. This returns a hash of the event attributes. - Added `Event#with` method. This provides a way to create a new event diff --git a/event_sourcery.gemspec b/event_sourcery.gemspec index 341892d..b8fafb1 100644 --- a/event_sourcery.gemspec +++ b/event_sourcery.gemspec @@ -6,14 +6,14 @@ require 'event_sourcery/version' Gem::Specification.new do |spec| spec.name = 'event_sourcery' spec.version = EventSourcery::VERSION - spec.authors = ['Steve Hodgkiss', 'Tao Guo', 'Sebastian von Conrad'] - spec.email = ['steve@hodgkiss.me', 'tao.guo@envato.com', 'sebastian.von.conrad@envato.com'] + spec.authors = ['Envato'] + spec.email = ['rubygems@envato.com'] spec.summary = 'Event Sourcing Library' spec.description = '' spec.homepage = 'https://github.com/envato/event_sourcery' - spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } + spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(\.|Gemfile|Rakefile|bin/|script/|spec/)}) } spec.bindir = 'exe' spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ['lib']