From 8a24f353cf989f9c2d958860bca415771747f821 Mon Sep 17 00:00:00 2001 From: Denis Talakevich Date: Tue, 26 Oct 2021 11:13:15 +0300 Subject: [PATCH] bump 2.0.0 version --- CHANGELOG.md | 20 +++++++++++++++++++- README.md | 4 ++++ lib/didww/version.rb | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a0493e..7d280aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,15 +4,33 @@ All notable changes to this project will be documented in this file. 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] +## [2.0.0] - 2021-10-26 ### Breaking Changes - upgrade `json_api_client` version to `1.18.0` [#9](https://github.com/didww/didww-v3-ruby/pull/9) Handling of 4XX responses was changed - it now raises JsonApiClient::Errors::ClientError with `detail` as error message instead of adding it into base errors. +- /v3/dids in request and response attributes pending_removal being removed in favor of billing_cycles_count. +- /v3/did_groups restriction message removed in favor of requirements relationship. ### Changes - replace travis with github actions [#7](https://github.com/didww/didww-v3-ruby/pull/7) [#9](https://github.com/didww/didww-v3-ruby/pull/9) - use rubocop 1.9.X version [#7](https://github.com/didww/didww-v3-ruby/pull/7) - add bundle-audit [#7](https://github.com/didww/didww-v3-ruby/pull/7) +- /v3/orders request attribute items of type DID Order Item Attributes can have billing_cycles_count. +- /v3/dids added address_verification relationship. +- callbacks attributes added to /v3/orders, /v3/cdr_exports. +- /v3/proof_types read endpoints being added. +- /v3/supporting_document_templates read endpoints being added. +- /v3/requirements read endpoints being added. +- /v3/identities read, write, and delete endpoints being added. +- /v3/addresses read, write, and delete endpoints being added. +- /v3/encrypted_files read, write, and delete endpoints being added. +- /v3/proofs write, delete endpoint being added. +- /v3/permanent_supporting_documents write, delete endpoint being added. +- /v3/address_verifications read and write endpoints being added. +- /v3/requirement_validations write endpoint being added. + +### Bugfixes +- fix order purchase when activesupport 6.X.X is used. ## [1.3.0] - 2018-09-03 ### Changes diff --git a/README.md b/README.md index d650452..e94adae 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,10 @@ The DIDWW API v3 is a fully compliant implementation of the [JSON API specificat Read more https://doc.didww.com/api +Gem Versions **2.X.X** are intended to use with DIDWW API 3 version [2021-04-19](https://doc.didww.com/api3/2021-04-19/index.html). + +Gem Versions **1.X.X** are intended to use with DIDWW API 3 version [2017-09-18](https://doc.didww.com/api3/2017-09-18/index.html). + ## Installation Add this line to your application's Gemfile: diff --git a/lib/didww/version.rb b/lib/didww/version.rb index 71cd4a1..9dac6c8 100644 --- a/lib/didww/version.rb +++ b/lib/didww/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module DIDWW - VERSION = '1.3.0'.freeze + VERSION = '2.0.0'.freeze end