Skip to content

Commit

Permalink
Merge pull request #174 from DIG-Network/release/v0.0.1-alpha.186
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.186
  • Loading branch information
MichaelTaylor3D authored Nov 1, 2024
2 parents 61345e7 + 937932f commit ca9d536
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.1-alpha.186](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.185...v0.0.1-alpha.186) (2024-11-01)


### Features

* add base64 getters to udi class ([6e00ca4](https://github.com/DIG-Network/dig-chia-sdk/commit/6e00ca42939562d5f3400b995c29c33f2064c8c2))

### [0.0.1-alpha.185](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.184...v0.0.1-alpha.185) (2024-11-01)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@dignetwork/dig-sdk",
"version": "0.0.1-alpha.185",
"version": "0.0.1-alpha.186",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand Down
1 change: 1 addition & 0 deletions src/utils/Udi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ class Udi {
}

static toStandardBase64(base64UrlSafe: string): string {
// Convert URL-safe Base64 to standard Base64
return base64UrlSafe.replace(/-/g, "+").replace(/_/g, "/");
}

Expand Down

0 comments on commit ca9d536

Please sign in to comment.