From 7c770b28c7167d838a6cf111ab3ee1eabfe0706e Mon Sep 17 00:00:00 2001 From: Chris Wilson <> Date: Tue, 14 Dec 2021 11:13:36 -0600 Subject: [PATCH] prepares release --- .../main/java/com/sparkpost/package-info.java | 41 +++++++++---------- tools/bin/collectJars.sh | 2 +- 2 files changed, 21 insertions(+), 22 deletions(-) diff --git a/libs/sparkpost-lib/src/main/java/com/sparkpost/package-info.java b/libs/sparkpost-lib/src/main/java/com/sparkpost/package-info.java index 5037bf9..8080b7a 100644 --- a/libs/sparkpost-lib/src/main/java/com/sparkpost/package-info.java +++ b/libs/sparkpost-lib/src/main/java/com/sparkpost/package-info.java @@ -5,38 +5,38 @@ * This java API is designed to follow closely the design of the SparkPost * REST API. As a result, this java library is composed of 3 groups of java classes:
* *
*
- *

Resources classes


+ *

Resources classes


* A resource class is a collection of static methods under one class.
* All of the methods are a 1-to-1 match with an endpoint within a SparkPost REST API.
*
* For instance, the ResourceTransmissions class contains 3 methods: * - * See the - * SparkPost Transmission API.
+ * See the + * SparkPost Transmission API.
*
- *

Data Transfer Objects


+ *

Data Transfer Objects


* A DTO class is a container of fields which intent is to be serialized into * a JSON string when sending a request to a SparkPost API.
*
* For instance, the Sending Domains resource ( class ResourceSendingDomains ) - * has a create() method that matches the create endpoint in the SparkPost + * has a create() method that matches the create endpoint in the SparkPost * Sending Domains API.
* To create a domain, the JSON request to the SparkPost API is made of 2 fields:
* - * We could have designed this java library to merely accept these fields in the + * We could have designed this java library to merely accept these fields in the * method signature , for instance here ResourceSendingDomains.create would * have become ResourceSendingDomains.create( String domain, String dkim_info).
* Only in most cases the request parameters are numerous, and passing them @@ -46,13 +46,13 @@ * ResourceSendingDomains.create( RestConnection connection, SendingDomain domain)
* (connection is the server connection to use to make the request, see below)
*
- *

REST mechanism classes


+ *

REST mechanism classes


* There are 4 classes necessary to put in place our REST system : * *
* Client define information specific to the SparkPost client: the @@ -69,6 +69,5 @@ * It also implements a simple JSON-to-Java deserialization using Google's * Gson class. */ -package com.sparkpost ; - +package com.sparkpost; diff --git a/tools/bin/collectJars.sh b/tools/bin/collectJars.sh index 811cdbb..c00157e 100755 --- a/tools/bin/collectJars.sh +++ b/tools/bin/collectJars.sh @@ -3,7 +3,7 @@ # Do everything relative to the tools/bin directory cd "$(dirname $0)" -VERSION=0.23 +VERSION=0.24 cd ../..