Skip to content
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
15 changes: 15 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## v1.1.0 /2025-11-17

## What's Changed
* Add missing hotkey parameter to test functions by @Gimzou in https://github.com/opentensor/bittensor-drand/pull/48
* Update release workflow by @basfroman in https://github.com/opentensor/bittensor-drand/pull/58
* feat: add encrypt_at_round() for direct Drand round encryption by @ShubhamChndrvnshi in https://github.com/opentensor/bittensor-drand/pull/56
* feat: add decrypt_with_signature() by @ShubhamChndrvnshi in https://github.com/opentensor/bittensor-drand/pull/59
* Python 3.14 support, fix unit tests + move workflow to gh by @basfroman in https://github.com/opentensor/bittensor-drand/pull/60

## New Contributors
* @Gimzou made their first contribution in https://github.com/opentensor/bittensor-drand/pull/48
* @ShubhamChndrvnshi made their first contribution in https://github.com/opentensor/bittensor-drand/pull/56

**Full Changelog**: https://github.com/opentensor/bittensor-drand/compare/v1.0.1...v1.1.0

## v1.0.1 /2025-10-29
* Updates PyO3 to handle py3.14 by @thewhaleking in https://github.com/opentensor/bittensor-drand/pull/52
* Updates workflow to be able to use forks as well by @thewhaleking in https://github.com/opentensor/bittensor-drand/pull/51
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bittensor-drand"
version = "1.0.1"
version = "1.1.0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "bittensor-drand"
version = "1.0.1"
version = "1.1.0"
description = ""
readme = "README.md"
license = {file = "LICENSE"}
Expand Down
Loading