From f7cbfc27de98671a6ae3d12e5f1904330ebaa97d Mon Sep 17 00:00:00 2001 From: "Daniel (dB.) Doubrovkine" Date: Thu, 1 Feb 2024 10:47:28 -0500 Subject: [PATCH] Preparing for release, 2.0. --- CHANGELOG.md | 3 +-- README.md | 2 +- lib/hyperclient/version.rb | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff81465..77e6952 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,12 @@ ## Changelog -### 2.0.0 (Next) +### 2.0.0 (2024/02/01) * [#268](https://github.com/codegram/hyperclient/pull/268): Replace Travis-CI with GHA - [@dblock](https://github.com/dblock). * [#269](https://github.com/codegram/hyperclient/pull/269): Re-add code coverage - [@dblock](https://github.com/dblock). * [#270](https://github.com/codegram/hyperclient/pull/270): Upgrade Rubocop to 1.45 - [@dblock](https://github.com/dblock). * [#271](https://github.com/codegram/hyperclient/pull/271): Test against Ruby 3.2 - [@dblock](https://github.com/dblock). * [#285](https://github.com/codegram/hyperclient/pull/285): Support Faraday 2.x - [@dblock](https://github.com/dblock). -* Your contribution here. ### 1.0.1 (2021/01/02) diff --git a/README.md b/README.md index 1a7c78b..9a2e466 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Hyperclient is a Hypermedia API client written in Ruby. It fully supports [JSON # Usage -The examples in this README use the [Splines Demo API](https://github.com/ruby-grape/grape-with-roar) running [here](https://grape-with-roar.herokuapp.com/api). If you're upgrading from a previous version, please make sure to read [UPGRADING](UPGRADING.md). +The examples in this README use the [Splines Demo API](https://github.com/ruby-grape/grape-with-roar) running [here](https://grape-with-roar.herokuapp.com/api). Use version 1.x with Faraday 1.x, and version 2.x with Faraday 2.x. If you're upgrading from a previous version, please make sure to read [UPGRADING](UPGRADING.md). ## API Client diff --git a/lib/hyperclient/version.rb b/lib/hyperclient/version.rb index 46f95c0..1aa34bb 100644 --- a/lib/hyperclient/version.rb +++ b/lib/hyperclient/version.rb @@ -1,3 +1,3 @@ module Hyperclient - VERSION = '1.1.0'.freeze + VERSION = '2.0.0'.freeze end