Skip to content

Commit

Permalink
Merge pull request #140 from DIG-Network/release/v0.0.1-alpha.155
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.155
  • Loading branch information
MichaelTaylor3D authored Oct 6, 2024
2 parents 7e9e6ce + ae35061 commit 147dbb1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 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.155](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.154...v0.0.1-alpha.155) (2024-10-06)


### Features

* support hostnames in publicip env ([27418ef](https://github.com/DIG-Network/dig-chia-sdk/commit/27418efdb0b90d61648b2da6ef89606caf1e9431))

### [0.0.1-alpha.154](https://github.com/DIG-Network/dig-chia-sdk/compare/v0.0.1-alpha.153...v0.0.1-alpha.154) (2024-10-06)


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.154",
"version": "0.0.1-alpha.155",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/utils/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const isValidHost = (host: string): boolean => {
};

export const getPublicHost = async (): Promise<string | undefined> => {
const publicHost = Environment.PUBLIC_IP;
const publicHost = process.env.PUBLIC_IP;

if (publicHost) {
console.log("Public IP/Hostname from env:", publicHost);
Expand Down

0 comments on commit 147dbb1

Please sign in to comment.