Skip to content

Commit 5e261d6

Browse files
committed
Release 0.2.0
1 parent 69229ff commit 5e261d6

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
## Incoming! v0.2.0 (unreleased) ##
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
23

3-
* Add Mandrill Strategy
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
46

5-
*Joshua Wood*
7+
## [Unreleased]
8+
9+
## [0.2.0] - 2019-11-27
10+
### Added
11+
- Bumped all dependencies.

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
incoming (0.1.8)
4+
incoming (0.2.0)
55
mail (~> 2.4)
66
rack
77

incoming.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Gem::Specification.new do |s|
22
# The following lines are updated automatically by `rake gemspec`
33
s.name = 'incoming'
4-
s.version = '0.1.8'
5-
s.date = '2014-06-14'
4+
s.version = '0.2.0'
5+
s.date = '2019-11-27'
66

77
s.summary = 'Incoming! helps you receive email in your Rack apps.'
88
s.description = 'Incoming! standardizes various mail parse apis, making it a snap to receive emails through HTTP post hooks.'

lib/incoming.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
require 'incoming/strategy'
33

44
module Incoming
5-
VERSION = '0.1.8'
5+
VERSION = '0.2.0'
66

77
module Strategies
88
autoload :Mandrill, 'incoming/strategies/mandrill'

0 commit comments

Comments
 (0)