Skip to content

Commit 8705235

Browse files
committed
bump version
1 parent bd371f2 commit 8705235

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# 5.4.0
2+
3+
## New features
4+
- CodingAlphabet now supports case-insensitivity
5+
6+
## Improvements
7+
- Multibase decoding now supports case-insensitive decoding
8+
- Base36 decoding is now case-insensitive
9+
10+
## Fixes
11+
- Base32 case-insensitive decoding now works correctly
12+
113
# 5.3.0
214

315
## New features

src/SimpleBase.csproj

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,25 +12,27 @@
1212
<AssemblyOriginatorKeyFile>..\SimpleBase.snk</AssemblyOriginatorKeyFile>
1313
<DelaySign>false</DelaySign>
1414

15-
<PackageVersion>5.3.0</PackageVersion>
15+
<PackageVersion>5.4.0</PackageVersion>
1616
<DocumentationFile>SimpleBase.xml</DocumentationFile>
1717
<PackageProjectUrl>https://github.com/ssg/SimpleBase</PackageProjectUrl>
1818
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1919
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
20-
<PackageTags>base16 base32 base36 base45 base58 base62 base85 ascii85 z85 hexadecimal bitcoin ripple flickr crockford extended hex rfc4648 z-base-32 geohash bech32 rfc1924</PackageTags>
20+
<PackageTags>base16 base32 base36 base45 base58 base62 base85 ascii85 z85 base2 base8 base10 hexadecimal bitcoin ripple flickr crockford extended hex rfc4648 z-base-32 geohash bech32 rfc1924</PackageTags>
2121
<LangVersion>latest</LangVersion>
2222
<Nullable>enable</Nullable>
2323
<PlatformTarget>AnyCPU</PlatformTarget>
2424
<PackageReadmeFile>README.md</PackageReadmeFile>
2525
<PackageReleaseNotes>
2626
<![CDATA[
2727
## New features
28-
- AOT and trimming compatibility
29-
- Base2, Base8, and Base10 support
28+
- CodingAlphabet now supports case-insensitivity
3029
3130
## Improvements
32-
- `Base58` now uses `DividingCoder` under the hood for less code duplication
33-
- Several implementations now take bytesWritten into account when returning buffers, reducing the possibility of returning a buffer larger than necessary.
31+
- Multibase decoding now supports case-insensitive decoding
32+
- Base36 decoding is now case-insensitive
33+
34+
## Fixes
35+
- Base32 case-insensitive decoding now works correctly
3436
]]>
3537
</PackageReleaseNotes>
3638
</PropertyGroup>

0 commit comments

Comments
 (0)