Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/8.4.1 #2496

Merged
merged 8 commits into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 8.4.1 /2024-11-27

## What's Changed

* Backmerge master 840 by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2494
* Enable arguments to be set in axon config by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2493

**Full Changelog**: https://github.com/opentensor/bittensor/compare/v8.4.0...v8.4.1

## 8.4.0 /2024-11-27

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.4.0
8.4.1
10 changes: 5 additions & 5 deletions bittensor/core/axon.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,11 @@ def __init__(
if config is None:
config = Axon.config()
config = copy.deepcopy(config)
config.axon.ip = ip or DEFAULTS.axon.ip
config.axon.port = port or DEFAULTS.axon.port
config.axon.external_ip = external_ip or DEFAULTS.axon.external_ip
config.axon.external_port = external_port or DEFAULTS.axon.external_port
config.axon.max_workers = max_workers or DEFAULTS.axon.max_workers
config.axon.ip = ip or config.axon.ip
config.axon.port = port or config.axon.port
config.axon.external_ip = external_ip or config.axon.external_ip
config.axon.external_port = external_port or config.axon.external_port
config.axon.max_workers = max_workers or config.axon.max_workers
Axon.check_config(config)
self.config = config # type: ignore

Expand Down
2 changes: 1 addition & 1 deletion bittensor/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.

__version__ = "8.4.0"
__version__ = "8.4.1"

import os
import re
Expand Down
Loading