-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(sdk): remove hex encoding for segment hash (#1805)
### Proposed Changes * ### Checklist - [ ] I have added or updated unit tests - [ ] I have added or updated integration tests (if appropriate) - [ ] I have added or updated documentation ### Testing Instructions --------- Co-authored-by: David Mihalcik <dmihalcik@virtru.com>
- Loading branch information
1 parent
e50a0ff
commit d7179c2
Showing
4 changed files
with
71 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
package sdk | ||
|
||
const ( | ||
Version = "0.3.26" // SDK version // x-release-please-version | ||
TDFSpecVersion = "4.2.2" // Vesion of TDF Spec currently targeted by the SDK | ||
// The latest version of TDF Spec currently targeted by the SDK. | ||
// By default, new files will conform to this version of the spec | ||
// and, where possible, older versions will still be readable. | ||
TDFSpecVersion = "4.3.0" | ||
|
||
// The three-part semantic version number of this SDK | ||
Version = "0.3.26" // x-release-please-version | ||
) |