Skip to content

Commit f88de49

Browse files
committed
Add better doc and update Changelog
1 parent 3615d77 commit f88de49

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
* add radix encoding/parsing and fix radix tests #6, #20
66
* add support for Base32 RFC4648 non-hex alphabet encoding/parsing #21
77

8+
### Deprecations (will be removed in v1.0+)
9+
10+
* `parseBase36()`/`encodeBase36()` - use `parseRadix(36)`/`encodeRadix(36)` instead
11+
812
## v0.7.1
913

1014
* sign AFTER ProGuard so optimized version has correct jar signature
@@ -30,6 +34,10 @@
3034
* add constructor/converter from/to UUID #9
3135
* add `empty()` constructor, creating empty byte array
3236

37+
### Deprecations (will be removed in v1.0+)
38+
39+
* `toObjectArray()` renamed to `toBoxedArray()`
40+
3341
## v0.5.0
3442

3543
* better resource handling for compression

src/main/java/at/favre/lib/bytes/BaseEncoding.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
import java.util.Objects;
2828

2929
/**
30+
* Encoder which supports arbitrary alphabet and padding.
31+
*
3032
* Derived from Google Guava's common/io/ BaseEncoding
3133
* <p>
3234
* See: https://github.com/google/guava/blob/v26.0/guava/src/com/google/common/io/BaseEncoding.java

0 commit comments

Comments
 (0)