Skip to content

Commit

Permalink
Generate version 0.3.0 (#43)
Browse files Browse the repository at this point in the history
* Set Fretadão as gem author

* Update version on code

* Put on changelog all changes since 0.2.0 version
  • Loading branch information
bvicenzo committed May 19, 2023
1 parent c2b07cb commit c7dfc6f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- ### Removed -->
---

## 0.3.0
### Added
- Add Rspec Helper mock_service;
- Add Rspec Matcher have_succeed_with and have_failed_with;
- Add `Success()`, `Failure()`, `Check()`, `Try()` now can be multipe types;
- Changed depreacate `Result#type` method.
- Added Rspec Helper `#mock_service` #41;
- Added Rspec Matcher `#have_succeed_with` and `#have_failed_with` #41;
- Added `Success()`, `Failure()`, `Check()`, `Try()` now can be multipe types #41;
- Changed Depreacate `Result#type` method #41;
- Changed Deprecate method `#then` for Success and Failure classes #40
- Added RSpec support for mock and match results #35
- Deprecate method `#then` for Success and Failure classes #40;
- Removed deprecated method `#on` #33
- Changed Capture just one callback per result #30;

## 0.2.0
### Added
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
f_service (0.2.0)
f_service (0.3.0)

GEM
remote: https://rubygems.org/
Expand Down
4 changes: 2 additions & 2 deletions f_service.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ require 'f_service/version'
Gem::Specification.new do |spec|
spec.name = 'f_service'
spec.version = FService::VERSION
spec.authors = ['Matheus Richard']
spec.email = ['matheusrichardt@gmail.com']
spec.authors = ['Fretadao Tech Team']
spec.email = ['tech@fretadao.com.br']

spec.summary = 'A small, monad-based service class'
spec.description = <<-DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion lib/f_service/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module FService
# Current version of the gem
VERSION = '0.2.0'
VERSION = '0.3.0'
end

0 comments on commit c7dfc6f

Please sign in to comment.