Skip to content

Commit

Permalink
Version bump to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
raulr committed Nov 3, 2021
1 parent 99fe6d5 commit d4f4da0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 21 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ 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).

## [Unreleased]

## [0.2.0] - 2021-11-03
### Added
- `Address` can now include a custom id for couriers that support it (currently only Correos Express).

Expand All @@ -15,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.1.0] - 2021-09-27
🎉 First release!

[Unreleased]: https://github.com/ecommerce-ventures/deliveries/compare/v0.1.1...HEAD
[Unreleased]: https://github.com/ecommerce-ventures/deliveries/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/ecommerce-ventures/deliveries/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/ecommerce-ventures/deliveries/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/ecommerce-ventures/deliveries/releases/tag/v0.1.0
38 changes: 19 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
deliveries (0.1.1)
deliveries (0.2.0)
activesupport (>= 5.2.0)
hexapdf
httparty
Expand Down Expand Up @@ -35,7 +35,7 @@ GEM
gyoku (1.3.1)
builder (>= 2.1.2)
hashdiff (1.0.1)
hexapdf (0.16.0)
hexapdf (0.17.3)
cmdparse (~> 3.0, >= 3.0.3)
geom2d (~> 0.3)
httparty (0.20.0)
Expand All @@ -44,7 +44,7 @@ GEM
httpi (2.5.0)
rack
socksify
i18n (1.8.10)
i18n (1.8.11)
concurrent-ruby (~> 1.0)
mime-types (3.3.1)
mime-types-data (~> 3.2015)
Expand All @@ -55,29 +55,29 @@ GEM
nokogiri (1.12.5-x86_64-linux)
racc (~> 1.4)
nori (2.6.0)
parallel (1.20.1)
parallel (1.21.0)
parser (3.0.2.0)
ast (~> 2.4.1)
public_suffix (4.0.6)
racc (1.5.2)
racc (1.6.0)
rack (2.2.3)
rainbow (3.0.0)
rake (13.0.6)
regexp_parser (2.1.1)
rexml (3.2.5)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.3)
rspec-support (~> 3.9.3)
rspec-expectations (3.9.4)
rspec (3.10.0)
rspec-core (~> 3.10.0)
rspec-expectations (~> 3.10.0)
rspec-mocks (~> 3.10.0)
rspec-core (3.10.1)
rspec-support (~> 3.10.0)
rspec-expectations (3.10.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-mocks (3.9.1)
rspec-support (~> 3.10.0)
rspec-mocks (3.10.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.4)
rspec-support (~> 3.10.0)
rspec-support (3.10.3)
rubocop (0.93.1)
parallel (~> 1.10)
parser (>= 2.7.1.5)
Expand All @@ -87,7 +87,7 @@ GEM
rubocop-ast (>= 0.6.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 2.0)
rubocop-ast (1.10.0)
rubocop-ast (1.12.0)
parser (>= 3.0.1.1)
ruby-progressbar (1.11.0)
savon (2.12.1)
Expand All @@ -101,7 +101,7 @@ GEM
socksify (1.7.1)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
unicode-display_width (1.7.0)
unicode-display_width (1.8.0)
wasabi (3.6.1)
addressable
httpi (~> 2.0)
Expand All @@ -110,7 +110,7 @@ GEM
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
zeitwerk (2.4.2)
zeitwerk (2.5.1)

PLATFORMS
x86_64-linux
Expand Down
2 changes: 1 addition & 1 deletion lib/deliveries/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Deliveries
VERSION = '0.1.1'
VERSION = '0.2.0'
end

0 comments on commit d4f4da0

Please sign in to comment.