Skip to content

Commit b2db653

Browse files
authored
Merge pull request #2496 from opentensor/release/8.4.1
Release/8.4.1
2 parents 84851a4 + f90b81a commit b2db653

File tree

4 files changed

+16
-7
lines changed

4 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 8.4.1 /2024-11-27
4+
5+
## What's Changed
6+
7+
* Backmerge master 840 by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2494
8+
* Enable arguments to be set in axon config by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2493
9+
10+
**Full Changelog**: https://github.com/opentensor/bittensor/compare/v8.4.0...v8.4.1
11+
312
## 8.4.0 /2024-11-27
413

514
## What's Changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8.4.0
1+
8.4.1

bittensor/core/axon.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -332,11 +332,11 @@ def __init__(
332332
if config is None:
333333
config = Axon.config()
334334
config = copy.deepcopy(config)
335-
config.axon.ip = ip or DEFAULTS.axon.ip
336-
config.axon.port = port or DEFAULTS.axon.port
337-
config.axon.external_ip = external_ip or DEFAULTS.axon.external_ip
338-
config.axon.external_port = external_port or DEFAULTS.axon.external_port
339-
config.axon.max_workers = max_workers or DEFAULTS.axon.max_workers
335+
config.axon.ip = ip or config.axon.ip
336+
config.axon.port = port or config.axon.port
337+
config.axon.external_ip = external_ip or config.axon.external_ip
338+
config.axon.external_port = external_port or config.axon.external_port
339+
config.axon.max_workers = max_workers or config.axon.max_workers
340340
Axon.check_config(config)
341341
self.config = config # type: ignore
342342

bittensor/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1616
# DEALINGS IN THE SOFTWARE.
1717

18-
__version__ = "8.4.0"
18+
__version__ = "8.4.1"
1919

2020
import os
2121
import re

0 commit comments

Comments
 (0)