Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## v2.10.0

### Changes

#### Binary Scale Format (BinaryScale)

* Added comprehensive support for binary SCALE codec encoding and decoding
* `BinaryScale` provides direct conversion between Kotlin types and SCALE-encoded byte arrays
* Supports all SCALE types: primitives, compact integers, strings, byte arrays, lists, optionals, classes, objects, value classes, enums, and sealed classes
* Introduced binary-specific annotations:
* `@EnumIndex` - Specify custom indices for enum entries and sealed class variants
* `@FixedLength` - Encode collections without length prefix for fixed-size arrays and lists
* Wrapper classes `WithLength20`, `WithLength32`, `WithLength64` for generic fixed-length types
* Added complete test coverage with symmetrical encode/decode test suites

## v2.9.3

### Changes
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
buildscript {
ext {
// App version
versionName = '2.9.3'
versionName = '2.10.0'
versionCode = 1

// SDK and tools
compileVersion = 30
minVersion = 21
targetVersion = 30

kotlinVersion = '2.1.21'
kotlinVersion = '2.2.21'

supportVersion = '1.0.0'
constraintVersion = '1.1.3'
Expand Down
Loading
Loading