Skip to content

Commit

Permalink
Bumps versions to rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
ibraheem-opentensor committed Nov 4, 2024
1 parent 87a2ab2 commit b9cd034
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 4 deletions.
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Changelog

## 8.3.0rc2 /2024-11-04

## What's Changed
* Tweaks in Commit-reveal V2, new subprocess, and related utilities by @opendansor in https://github.com/opentensor/bittensor/pull/2355

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

## 8.3.0rc1 /2024-11-01

## 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
* Commit-reveal V2, new subprocess, and related utilities by @opendansor in https://github.com/opentensor/bittensor/pull/2355

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

## 8.2.0 /2024-10-10

## What's Changed
* remove commit from e2e tests by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2340
* add bittensor-cli as prod deps for sdk by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2345
* Fix the install command syntax by @rajkaramchedu in https://github.com/opentensor/bittensor/pull/2346
* add config test by @roman-opentensor in https://github.com/opentensor/bittensor/pull/2347
* Bumps version for 8.2.0 by @ibraheem-opentensor in https://github.com/opentensor/bittensor/pull/2348

**Full Changelog**: https://github.com/opentensor/bittensor/compare/v8.1.1...v8.2.0

## 8.1.1 /2024-10-04

## What's Changed
Expand Down
6 changes: 2 additions & 4 deletions 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.0"
__version__ = "8.3.0rc2"

import os
import re
Expand Down Expand Up @@ -322,9 +322,7 @@ def turn_console_on():


# Parsing version without any literals.
__version__ = re.match(r"^\d+\.\d+\.\d+", __version__).group(0)

version_split = __version__.split(".")
version_split = re.match(r"^\d+\.\d+\.\d+", __version__).group(0).split(".")
_version_info = tuple(int(part) for part in version_split)
_version_int_base = 1000
assert max(_version_info) < _version_int_base
Expand Down

0 comments on commit b9cd034

Please sign in to comment.