From 316f48021dc88527bd6ce7a1fd03edddb2a6e963 Mon Sep 17 00:00:00 2001 From: malachewhiz Date: Tue, 6 Dec 2022 13:46:32 +0100 Subject: [PATCH] v0.12.0 (#117) --- CHANGELOG.md | 15 +++++++++++++++ lib/shipcloud/version.rb | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f0c49c..5576549 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,26 @@ ## [Unreleased] ### Added + +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [0.12.0] - 2022-12-06 +### Added +- Add order model - Add attr_accessor for `service` to class `Shipcloud::Shipment` to be able to access the service attribute at the shipment object. - Add attr_accessor for `additional_services` to class `Shipcloud::Shipment` to be able to access the additional_services attribute at the shipment object. - Add attr_reader for `label_voucher_url` to class `Shipcloud::Shipment` to be able to read the label_voucher_url (QR Code url) attribute at the shipment object. - Added missing `frozen_string_literal: true` magic comments to files ### Changed +- Ensure compatibility with ruby 2.x and 3.x - Set required ruby version to >= 2.6 - Replace Travis CI with CircleCI - Specify simplecov to be ~> 0.21.0 diff --git a/lib/shipcloud/version.rb b/lib/shipcloud/version.rb index a6a9f2a..9ba062d 100644 --- a/lib/shipcloud/version.rb +++ b/lib/shipcloud/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Shipcloud - VERSION = "0.11.0" + VERSION = "0.12.0" end