Skip to content

Commit 8a24f35

Browse files
committed
bump 2.0.0 version
1 parent deb37f2 commit 8a24f35

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,33 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [2.0.0] - 2021-10-26
88
### Breaking Changes
99
- upgrade `json_api_client` version to `1.18.0` [#9](https://github.com/didww/didww-v3-ruby/pull/9)
1010
Handling of 4XX responses was changed - it now raises JsonApiClient::Errors::ClientError with `detail` as error message instead of adding it into base errors.
11+
- /v3/dids in request and response attributes pending_removal being removed in favor of billing_cycles_count.
12+
- /v3/did_groups restriction message removed in favor of requirements relationship.
1113

1214
### Changes
1315
- 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)
1416
- use rubocop 1.9.X version [#7](https://github.com/didww/didww-v3-ruby/pull/7)
1517
- add bundle-audit [#7](https://github.com/didww/didww-v3-ruby/pull/7)
18+
- /v3/orders request attribute items of type DID Order Item Attributes can have billing_cycles_count.
19+
- /v3/dids added address_verification relationship.
20+
- callbacks attributes added to /v3/orders, /v3/cdr_exports.
21+
- /v3/proof_types read endpoints being added.
22+
- /v3/supporting_document_templates read endpoints being added.
23+
- /v3/requirements read endpoints being added.
24+
- /v3/identities read, write, and delete endpoints being added.
25+
- /v3/addresses read, write, and delete endpoints being added.
26+
- /v3/encrypted_files read, write, and delete endpoints being added.
27+
- /v3/proofs write, delete endpoint being added.
28+
- /v3/permanent_supporting_documents write, delete endpoint being added.
29+
- /v3/address_verifications read and write endpoints being added.
30+
- /v3/requirement_validations write endpoint being added.
31+
32+
### Bugfixes
33+
- fix order purchase when activesupport 6.X.X is used.
1634

1735
## [1.3.0] - 2018-09-03
1836
### Changes

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ The DIDWW API v3 is a fully compliant implementation of the [JSON API specificat
1111

1212
Read more https://doc.didww.com/api
1313

14+
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).
15+
16+
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).
17+
1418
## Installation
1519

1620
Add this line to your application's Gemfile:

lib/didww/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# frozen_string_literal: true
22
module DIDWW
3-
VERSION = '1.3.0'.freeze
3+
VERSION = '2.0.0'.freeze
44
end

0 commit comments

Comments
 (0)