Skip to content

Commit

Permalink
version bump -> 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
igneus committed Sep 22, 2019
1 parent 1c93e55 commit a1bd937
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.2.0] 2019-09-22

### Added

* strict validation of incoming data
* distinctive User-Agent request header

### Changed

* use `HTTPi` and `multi_json` abstraction layers
* `CalendariumRomanum::Remote::Calendar` constructor argument
`api_version` removed, argument `driver` changed semantics
* concept of a "driver" shifted significantly
* `ServerNotFoundError`, `BadRequestError` and `TransportError`
exceptions dropped
* no attempt is made to translate transport-level exceptions,
those raised by `HTTPi` are left in place

## [0.1.0] 2017-09-02

*First public release*
2 changes: 1 addition & 1 deletion calendarium-romanum-remote.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |s|
s.add_dependency 'calendarium-romanum', '~> 0.4.0'
s.add_dependency 'httpi', '~> 2.0'
s.add_dependency 'multi_json', '~> 1.13'
s.add_dependency 'dry-schema', '~> 1.3.0'
s.add_dependency 'dry-schema', '~> 1.3'
s.add_development_dependency 'rake', '~> 12.0'
s.add_development_dependency 'rspec', '~> 3.6'
end
4 changes: 2 additions & 2 deletions lib/calendarium-romanum/remote/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module CalendariumRomanum
module Remote
VERSION = '0.1.0'
RELEASE_DATE = Date.new(2017, 9, 2)
VERSION = '0.2.0'
RELEASE_DATE = Date.new(2019, 9, 22)
end
end

0 comments on commit a1bd937

Please sign in to comment.