Skip to content

Commit

Permalink
Technical/Update gem documentation (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
bestwebua committed Jul 26, 2022
1 parent 54c34b4 commit c5c2dd6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
16 changes: 13 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.2.1] - 2022-07-27

### Fixed

- Fixed documentation

### Updated

- Updated gem documentation, version

## [1.2.0] - 2022-07-27

### Added

- Ability to use `RSET` SMTP command
- Ability to configure multiple message receiving flow during one session
- Ability to configure SMTP command delay responses
- Added ability to use `RSET` SMTP command
- Added ability to configure multiple message receiving flow during one session
- Added ability to configure SMTP command delay responses

### Updated

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ This gem includes easy system dependency manager. Run `bundle exec smtp_mock` wi
| `session_timeout: 60` | Session timeout in seconds. It's equal to 30 seconds by default |
| `shutdown_timeout: 5` | Graceful shutdown timeout in seconds. It's equal to 1 second by default |
| `fail_fast: true` | Enables fail fast scenario. Disabled by default |
| `multipleMessageReceiving: true` | Enables multiple message receiving scenario. Disabled by default |
| `multiple_message_receiving: true` | Enables multiple message receiving scenario. Disabled by default |
| `blacklisted_helo_domains: %w[a.com b.com]` | Blacklisted `HELO` domains |
| `blacklisted_mailfrom_emails: %w[[email protected] [email protected]]` | Blacklisted `MAIL FROM` emails |
| `blacklisted_rcptto_emails: %w[[email protected] [email protected]]` | blacklisted `RCPT TO` emails |
Expand Down
2 changes: 1 addition & 1 deletion lib/smtp_mock/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module SmtpMock
VERSION = '1.2.0'
VERSION = '1.2.1'
end

0 comments on commit c5c2dd6

Please sign in to comment.