Skip to content

Commit 7507461

Browse files
committed
1.1.0
1 parent 9577d52 commit 7507461

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
[![GitHub](https://img.shields.io/badge/-github-gray?logo=github)](https://github.com/zanaptak/BinaryToTextEncoding) [![NuGet](https://img.shields.io/nuget/v/Zanaptak.BinaryToTextEncoding?logo=nuget)](https://www.nuget.org/packages/Zanaptak.BinaryToTextEncoding)
44

5+
## 1.1.0 (2021-08-10)
6+
7+
- Add some built-in character sets
8+
- Fix Fable compilation error ([#2](https://github.com/zanaptak/BinaryToTextEncoding/issues/2))
9+
510
## 1.0.0 (2021-08-06)
611

712
- Enable Source Link

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,11 +117,11 @@ UnixCryptCharacterSet | Unix crypt password hashes, ASCII-sortable | ```./012345
117117

118118
Base91 | Description | Characters
119119
:--- | :--- | :---
120-
SortableQuotableCharacterSet | (Default) Excludes " ' \\ characters, ASCII-sortable | ```!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{|}~```
120+
SortableQuotableCharacterSet | (Default) Excludes " ' \\ characters, ASCII-sortable | ```!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[]^_`abcdefghijklmnopqrstuvwxyz{\|}~```
121121

122122
Base91Legacy | Description | Characters
123123
:--- | :--- | :---
124-
LegacyCharacterSet | (Default) Original 'basE91' character set | ```ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!#$%&()*+,./:;<=>?@[]^_`{|}~"```
124+
LegacyCharacterSet | (Default) Original 'basE91' character set | ```ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!#$%&()*+,./:;<=>?@[]^_`{\|}~"```
125125

126126
## Legacy basE91 compatibility
127127

src/BinaryToTextEncoding.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<PropertyGroup>
44
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
55
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
6-
<VersionPrefix>1.0.0</VersionPrefix>
6+
<VersionPrefix>1.1.0</VersionPrefix>
77
<VersionSuffix></VersionSuffix>
88
<Authors>zanaptak</Authors>
99
<AssemblyName>Zanaptak.BinaryToTextEncoding</AssemblyName>
1010
<Product>Zanaptak.BinaryToTextEncoding</Product>
1111
<PackageId>Zanaptak.BinaryToTextEncoding</PackageId>
1212
<PackageProjectUrl>https://github.com/zanaptak/BinaryToTextEncoding</PackageProjectUrl>
13-
<PackageReleaseNotes>https://github.com/zanaptak/BinaryToTextEncoding/blob/main/CHANGELOG.md#100-2021-08-06</PackageReleaseNotes>
13+
<PackageReleaseNotes>https://github.com/zanaptak/BinaryToTextEncoding/blob/main/CHANGELOG.md#110-2021-08-10</PackageReleaseNotes>
1414
<PackageTags>base16;base32;base46;base64;base91;.net;fable</PackageTags>
1515
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1616
<Description>A binary-to-text encoder/decoder library for .NET and Fable. Provides base 16, base 32, base 46, base 64, and base 91 codecs. Supports custom character sets.</Description>

0 commit comments

Comments
 (0)