Skip to content

Commit 24543ff

Browse files
Merge pull request #183 from DIG-Network/release/v0.0.1-alpha.194
Release/v0.0.1 alpha.194
2 parents 0edb936 + cdf7adf commit 24543ff

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

CHANGELOG.md

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

33
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.
44

5+
### [0.0.1-alpha.194](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.193...v0.0.1-alpha.194) (2024-11-16)
6+
7+
8+
### Bug Fixes
9+
10+
* temp store fix ([057cb34](https://github.com/DIG-Network/dig-chia-sdk/commit/057cb3410d8a1c2eec28171f7e634db440c3ae46))
11+
512
### [0.0.1-alpha.193](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.192...v0.0.1-alpha.193) (2024-11-16)
613

714

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dignetwork/dig-sdk",
3-
"version": "0.0.1-alpha.193",
3+
"version": "0.0.1-alpha.194",
44
"description": "",
55
"type": "commonjs",
66
"main": "./dist/index.js",

src/utils/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export const getStoresList = (): string[] => {
111111
/^[a-f0-9]{64}$/.test(folder) &&
112112
fs.lstatSync(path.join(STORE_PATH, folder)).isDirectory() &&
113113
// temp fix to remove folder that is causing issues
114-
folder !== "a3f1b2c4d5e6f708192a3b4c5d6e7f8091a2b3c4d5e6f708192a3b4c5d6e7f80")
114+
folder !== "a3f1b2c4d5e6f708192a3b4c5d6e7f8091a2b3c4d5e6f708192a3b4c5d6e7f80"
115115
);
116116
};
117117

0 commit comments

Comments
 (0)