Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zanaptak committed Aug 11, 2021
1 parent 9577d52 commit 7507461
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

[![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)

## 1.1.0 (2021-08-10)

- Add some built-in character sets
- Fix Fable compilation error ([#2](https://github.com/zanaptak/BinaryToTextEncoding/issues/2))

## 1.0.0 (2021-08-06)

- Enable Source Link
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ UnixCryptCharacterSet | Unix crypt password hashes, ASCII-sortable | ```./012345

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

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

## Legacy basE91 compatibility

Expand Down
4 changes: 2 additions & 2 deletions src/BinaryToTextEncoding.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
<DisableImplicitSystemValueTupleReference>true</DisableImplicitSystemValueTupleReference>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionPrefix>1.1.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>zanaptak</Authors>
<AssemblyName>Zanaptak.BinaryToTextEncoding</AssemblyName>
<Product>Zanaptak.BinaryToTextEncoding</Product>
<PackageId>Zanaptak.BinaryToTextEncoding</PackageId>
<PackageProjectUrl>https://github.com/zanaptak/BinaryToTextEncoding</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/zanaptak/BinaryToTextEncoding/blob/main/CHANGELOG.md#100-2021-08-06</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/zanaptak/BinaryToTextEncoding/blob/main/CHANGELOG.md#110-2021-08-10</PackageReleaseNotes>
<PackageTags>base16;base32;base46;base64;base91;.net;fable</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<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>
Expand Down

0 comments on commit 7507461

Please sign in to comment.