Skip to content

Commit

Permalink
Cut 1.3.0
Browse files Browse the repository at this point in the history
Oxford Dictionaries is updating their API to a new version which
includes quite a few changes:
https://developer.oxforddictionaries.com/version2

Oxford Dictionaries is taking their V1 API offline on June 30, 2019.

The deprecation warnings (please check the closed PRs online which
include them) should give an idea on how users should update their
applications to use the new V2 interfaces. All V2 interfaces use named
parameters and specifically leverage their `params` arguments for more
control over how the endpoints are called. Check out [Oxford
Dictionaries' online documentation]
(https://developer.oxforddictionaries.com/documentation), the specs, and
the commit messages for the V2 endpoints for more information.

v1.3.0 does not include a README update (I will do that when I cut
v2.0.0).

The 2.0.0 of this library will include the removal of all V1 interfaces.

The V2 interfaces for this library are in the following PRs:
Entries: #8
Translations: #12
Sentences: #13
Thesaurus: #14
Lemmas: #10
Search: #15
  • Loading branch information
swcraig committed Jun 23, 2019
1 parent 281e4f2 commit 3e15d3d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
## OxfordDictionary master (unreleased)

## OxfordDictionary 1.3.0 (2019-06-22)

- Add V2 translations support
[\#10](https://github.com/swcraig/oxford-dictionary/pull/12)
- Add V2 sentences support
[\#10](https://github.com/swcraig/oxford-dictionary/pull/13)
- Add V2 thesaurus support
[\#10](https://github.com/swcraig/oxford-dictionary/pull/14)
- Add V2 search support
[\#10](https://github.com/swcraig/oxford-dictionary/pull/15)

## OxfordDictionary 1.2.0 (2019-06-22)

- Add V2 lemmas support
Expand Down
2 changes: 1 addition & 1 deletion lib/oxford_dictionary/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module OxfordDictionary
VERSION = '1.2.0'.freeze
VERSION = '1.3.0'.freeze
end

0 comments on commit 3e15d3d

Please sign in to comment.