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

Backmerge master to staging #2424

Merged
merged 24 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
22350c3
Expands the type registry to include all the available options (#2353)
thewhaleking Oct 16, 2024
68ce71d
add `Subtensor.register`, `Subtensor.difficulty` and related staff wi…
roman-opentensor Oct 16, 2024
84b64f4
added to Subtensor: `burned_register`, `get_subnet_burn_cost`, `recyc…
roman-opentensor Oct 16, 2024
1df70d8
Poem "Risen from the Past". Act 3. (#2363)
roman-opentensor Oct 18, 2024
0bda76e
default port from 9946 to 9944 (#2376)
roman-opentensor Oct 31, 2024
bb17446
remove unused prometheus extrinsic (#2378)
roman-opentensor Nov 4, 2024
b8ffe19
Replace rich.console to btlogging.loggin (#2377)
roman-opentensor Nov 4, 2024
bc10981
Merge pull request #2382 from opentensor/feat/roman/remove-prompt-fro…
ibraheem-opentensor Nov 5, 2024
1a5a243
Handle SSL Error on Connection (#2384)
thewhaleking Nov 5, 2024
7e4849a
Add `subvortex` subnet and tests (#2395)
roman-opentensor Nov 6, 2024
39d4681
Bumps version and updates changelog
ibraheem-opentensor Nov 6, 2024
91e10ab
Merge pull request #2397 from opentensor/release/8.2.1
ibraheem-opentensor Nov 7, 2024
02ea158
bumping up version
roman-opentensor Nov 13, 2024
e39926d
Merge remote-tracking branch 'origin/master' into release/8.3.0
roman-opentensor Nov 13, 2024
3b25a0b
Merge pull request #2417 from opentensor/release/8.3.0
roman-opentensor Nov 13, 2024
859c8e9
Merge branch 'master' into release/8.3.1
roman-opentensor Nov 14, 2024
ec15d03
Update CHANGELOG.md
thewhaleking Nov 14, 2024
36f05b7
bumping version
roman-opentensor Nov 14, 2024
c980e21
Update CHANGELOG.md
thewhaleking Nov 14, 2024
18e85f6
update docker version in config.yml
roman-opentensor Nov 14, 2024
f7d343e
update docker version in config.yml
roman-opentensor Nov 14, 2024
268628b
remove docker job in config.yml
roman-opentensor Nov 14, 2024
82eecbc
remove docker job in config.yml 2
roman-opentensor Nov 14, 2024
ae02978
Merge pull request #2423 from opentensor/release/8.3.1
roman-opentensor Nov 14, 2024
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
23 changes: 0 additions & 23 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -275,19 +275,6 @@ jobs:
command: |
[[ $(docker manifest inspect opentensorfdn/bittensor:`cat VERSION` > /dev/null 2> /dev/null ; echo $?) == 1 ]] && echo "Docker image 'opentensorfdn/bittensor:`cat VERSION`' does not exist in dockerhub"

release-dry-run:
docker:
- image: cimg/python:3.10
steps:
- checkout
- setup_remote_docker:
version: 20.10.14
docker_layer_caching: true
- run:
name: Executing release script
command: |
./scripts/release/release.sh --github-token ${GH_API_ACCESS_TOKEN}

workflows:
compatibility_checks:
jobs:
Expand Down Expand Up @@ -339,11 +326,6 @@ workflows:
branches:
only:
- /^(release|hotfix)/.*/
- release-dry-run:
filters:
branches:
only:
- /^(release|hotfix)/.*/

release-requirements:
jobs:
Expand All @@ -352,8 +334,3 @@ workflows:
branches:
only:
- master
- release-dry-run:
filters:
branches:
only:
- master
45 changes: 44 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,48 @@
# Changelog

## 8.3.1 /2024-11-14

## What's Changed
* Fixes broken Subtensor methods by @thewhaleking in https://github.com/opentensor/bittensor/pull/2420
* [Tests] AsyncSubtensor (Part 7: The final race) by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2418

**Full Changelog**: https://github.com/opentensor/bittensor/compare/v8.3.0...v8.3.1

## 8.3.0 /2024-11-13

## What's Changed
* Expands the type registry to include all the available options by @thewhaleking in https://github.com/opentensor/bittensor/pull/2353
* add `Subtensor.register`, `Subtensor.difficulty` and related staff with tests by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2352
* added to Subtensor: `burned_register`, `get_subnet_burn_cost`, `recycle` and related extrinsics by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2359
* Poem "Risen from the Past". Act 3. by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2363
* default port from 9946 to 9944 by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2376
* remove unused prometheus extrinsic by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2378
* Replace rich.console to btlogging.loggin by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2377
* SDK (AsyncSubtensor) Part 1 by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2374
* SDK (AsyncSubtensor) Part 2 by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2380
* Handle SSL Error on Connection by @thewhaleking in https://github.com/opentensor/bittensor/pull/2384
* Avoid using `prompt` in SDK by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2382
* Backmerge/8.2.0 by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2389
* Remove `retry` and fix tests by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2392
* fix: logging weights correctly in utils/weight_utils.py by @grantdfoster in https://github.com/opentensor/bittensor/pull/2362
* Add `subvortex` subnet and tests by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2395
* Release/8.2.1 by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2397
* [Tests] AsyncSubtensor (Part 1) by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2398
* Extend period for fastblock e2e tests_incentive.py by @opendansor in https://github.com/opentensor/bittensor/pull/2400
* Remove unused import by @thewhaleking in https://github.com/opentensor/bittensor/pull/2401
* `Reconnection substrate...` as debug by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2403
* Handles websockets v14+ in async by @thewhaleking in https://github.com/opentensor/bittensor/pull/2404
* [Tests] AsyncSubtensor (Part 2) by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2407
* [Tests] AsyncSubtensor (Part 3) by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2409
* Handle new PasswordError from btwallet by @thewhaleking in https://github.com/opentensor/bittensor/pull/2406
* [Tests] AsyncSubtensor (Part 4) by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2410
* [Tests] AsyncSubtensor (Part 5) by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2411
* Bringing back lost methods for setting weights by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2412
* Update bt-decode requirement by @thewhaleking in https://github.com/opentensor/bittensor/pull/2413
* [Tests] AsyncSubtensor (Part 6) by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2414

**Full Changelog**: https://github.com/opentensor/bittensor/compare/v8.2.1...v8.3.0

## 8.2.1 /2024-11-06

## What's Changed
Expand Down Expand Up @@ -1143,4 +1186,4 @@ This release refactors the registration code for CPU registration to improve sol

### Synapse update

##
##
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.0.0
8.3.1
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.2.1"
__version__ = "8.3.1"

import os
import re
Expand Down
Loading