You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,3 +91,20 @@ bridges, please see [SLF4j.org](http://www.slf4j.org/manual.html).
91
91
In addition to unit tests in the main `ds3-sdk` module, there are additional integration tests in the `ds3-integration` module. Please see the integration [README](ds3-sdk-integration/README.md) for details on running the tests. To just run the SDK's unit tests use:
92
92
93
93
./gradlew clean ds3-sdk:test
94
+
95
+
## Creating a New Release
96
+
97
+
Update the version of the SDK before creating a new release. The format is `<major>.<minor>.<patch>`, where the
98
+
`<major>.<minor>` numbers must match the version of BP. The `<patch>` is an incrementing number that increments with
99
+
each SDK release for a given major/minor release.
100
+
101
+
The build number is specified in the `build.gradle` file:
102
+
103
+
```
104
+
allprojects {
105
+
group = 'com.spectralogic.ds3'
106
+
version = '5.4.0'
107
+
}
108
+
```
109
+
110
+
When a release is created in github, it is automatically published on [jitpack.io](https://jitpack.io/#SpectraLogic/ds3_java_sdk).
Copy file name to clipboardExpand all lines: ds3-sdk/src/main/java/com/spectralogic/ds3client/commands/spectrads3/ModifyDataPathBackendSpectraS3Request.java
+28Lines changed: 28 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,8 +41,12 @@ public class ModifyDataPathBackendSpectraS3Request extends AbstractRequest {
0 commit comments