From 4514465e25115ece472c1e82b8fdb3447c953fc1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 11 Feb 2024 23:47:00 +0000 Subject: [PATCH] chore: release Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- shopify-cli/CHANGELOG.md | 26 +++++++++++++++++++ shopify-cli/Cargo.toml | 2 +- shopify/CHANGELOG.md | 56 ++++++++++++++++++++++++++++++++++++++++ shopify/Cargo.toml | 2 +- 5 files changed, 85 insertions(+), 3 deletions(-) create mode 100644 shopify-cli/CHANGELOG.md create mode 100644 shopify/CHANGELOG.md diff --git a/Cargo.toml b/Cargo.toml index e98c3d9..34c44e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,4 +2,4 @@ members = [ "./shopify", "./shopify-cli" -] \ No newline at end of file +] diff --git a/shopify-cli/CHANGELOG.md b/shopify-cli/CHANGELOG.md new file mode 100644 index 0000000..bc41f78 --- /dev/null +++ b/shopify-cli/CHANGELOG.md @@ -0,0 +1,26 @@ +# Changelog +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] + +## [0.1.0](https://github.com/Ventmere/shopify/releases/tag/shopify-cli-v0.1.0) - 2024-02-11 + +### Added +- new pagination support; upgrade Product & Variant api to 2020-07 + +### Fixed +- fix order Property::value type + +### Other +- rustfmt and fix warnings ([#8](https://github.com/Ventmere/shopify/pull/8)) +- add update_fulfillment_tracking, mark field optional. +- Fix fulfillment order creation field name +- Support new FulfillmentOrder API +- Shopify schema changes +- Order risk api +- upgrade clap +- shipping line source is optional +- add OrderApi::get diff --git a/shopify-cli/Cargo.toml b/shopify-cli/Cargo.toml index b09a78d..f6acc0a 100644 --- a/shopify-cli/Cargo.toml +++ b/shopify-cli/Cargo.toml @@ -11,4 +11,4 @@ clap = { version = "3.1.12", features = ["derive"] } shopify = { path = "../shopify" } dotenv = "0.15.0" serde_json = "1.0.56" -serde = { version = "1", features = ["derive"] } \ No newline at end of file +serde = { version = "1", features = ["derive"] } diff --git a/shopify/CHANGELOG.md b/shopify/CHANGELOG.md new file mode 100644 index 0000000..d6f4480 --- /dev/null +++ b/shopify/CHANGELOG.md @@ -0,0 +1,56 @@ +# Changelog +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] + +## [0.1.7](https://github.com/Ventmere/shopify/compare/shopify-v0.1.6...shopify-v0.1.7) - 2024-02-11 + +### Added +- add `Client::update_order()` ([#9](https://github.com/Ventmere/shopify/pull/9)) +- add ShipmentStatus::LabelPrinted +- make GetPage: Clone +- new pagination support; upgrade Product & Variant api to 2020-07 +- request_raw + +### Fixed +- add `NotEligible` enum variant for order fulfillment status ([#7](https://github.com/Ventmere/shopify/pull/7)) +- fix order Property::value type + +### Other +- rustfmt and fix warnings ([#8](https://github.com/Ventmere/shopify/pull/8)) +- Fixed spelling of Wrapper from Warpper ([#6](https://github.com/Ventmere/shopify/pull/6)) +- add update_fulfillment_tracking, mark field optional. +- Add CI to repository ([#4](https://github.com/Ventmere/shopify/pull/4)) +- Fix fulfillment order creation field name +- Resolve compile error within order module +- update fulfilment module test with new fields (sku sharing and order opt in) +- Resolve compiler errors with tests in inventory module +- add new fields +- Support new FulfillmentOrder API +- sku is nullable +- more nullable +- country is nullable +- Shopify schema changes +- body_html is nullable +- Order risk api +- Property value is nullable. +- rust 2018, reqwest 0.11, thiserror +- first name is optional +- shipping line source is optional +- optional fields +- add OrderApi::get +- fix an error caught in production +- create_fulfillment, update_fulfillment accept &NewFulfillment +- Make NewFulfillment Clone +- :tracking_urls +- :location_id +- Make enum Copy, Clone, PartialEq +- Should retry on Io error. +- Fix a typo. +- Inventory API initial +- Address.country_code is nullable. +- Fix test TMP_DIR +- 0.2.0 diff --git a/shopify/Cargo.toml b/shopify/Cargo.toml index c4d6fb5..0af93c9 100644 --- a/shopify/Cargo.toml +++ b/shopify/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shopify" -version = "0.1.6" +version = "0.1.7" authors = ["fluxxu "] description = "Shopify API Client for Rust." license = "MIT"