Skip to content

Commit 99c12ac

Browse files
Updated changelog to reflect v3 features.
1 parent 897ebc4 commit 99c12ac

File tree

2 files changed

+30
-10
lines changed

2 files changed

+30
-10
lines changed

docs/CHANGELOG-2.1.2.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,3 @@ In this version the property is declared using the `open` modifier, allowing der
5050

5151
---
5252

53-
###

docs/CHANGELOG-3.0.0.md

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,51 @@
11
![ONIX Labs](https://raw.githubusercontent.com/onix-labs/onix-labs.github.io/master/content/logo/master_full_md.png)
22

3-
# Change Log - Version 0.0.0
3+
# Change Log - Version 3.0.0
44

55
This document serves as the change log for the ONIXLabs Corda Core API.
66

77
## Release Notes
88

9-
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
9+
This release publishes source code along with the compiled dependencies, enabling developers debug into the ONIXLabs APIs and understand what's going on under the hood.
1010

1111
---
1212

13-
### TypeName _Declaration_
13+
### sortAndReduce _Extension Function_
1414

15-
**Module:** onixlabs-corda-core-modulename
15+
**Module:** onixlabs-corda-core-contract
1616

17-
**Package:** io.onixlabs.corda.core.packagename
17+
**Package:** io.onixlabs.corda.core.contract
1818

19-
Description of the type or feature.
19+
Sorts and reduces an `Iterable` of `SecureHash` into a single hash.
2020

2121
```kotlin
22-
class TypeName
22+
fun Iterable<SecureHash>.sortAndReduce(): SecureHash
2323
```
2424

25-
#### Remarks
25+
---
26+
27+
### SignatureData *Class*
28+
29+
**Module:** onixlabs-corda-core-contract
30+
31+
**Package:** io.onixlabs.corda.core.contract
32+
33+
#### Description
34+
35+
Represents an array of unsigned bytes, and its signed equivalent.
36+
37+
```kotlin
38+
@CordaSerializable
39+
data class SignatureData(
40+
val content: ByteArray,
41+
val signature: DigitalSignature
42+
)
43+
```
2644

27-
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
45+
> 🔵 **INFORMATION**
46+
>
47+
> This API exists in version 1.2.0 however in version 3.0.0 the `verify` function no longer returns `Boolean`. Instead, the `isValid` function replaces the `verify` function, and the `verify` function now returns `Unit`, or throws a `SignatureException` if the digital signature could not be verified by the specified public key.
2848
2949
---
3050

51+
###

0 commit comments

Comments
 (0)