Skip to content

Commit 12c8d14

Browse files
authored
Merge pull request #6653 from wileyj/chore/3.3.0.0.0_develop
Merge release/3.3.0.0.0 to develop from intermediary
2 parents aa20011 + 28a2a86 commit 12c8d14

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,16 @@ and this project adheres to the versioning scheme outlined in the [README.md](RE
88
## [Unreleased]
99

1010
### Added
11-
12-
- Added support for new Clarity 4 builtin, `secp256r1-verify?` (not activated until epoch 3.3)
1311
- Fixed an issue where `event.committed` was always equal to `true` in the block replay RPC endpoint
1412
- Added `result_hex` and `post_condition_aborted` to the block replay RPC endpoint
13+
-
14+
## [3.3.0.0.0]
15+
16+
### Added
17+
18+
- Added support for new Clarity 4 builtin, `secp256r1-verify?` (not activated until epoch 3.3)
1519
- New `block_proposal_validation_timeout_secs` configuration option in the connection options section, allowing to set the maximum duration a node will spend validating a proposed block.
20+
- Activation height selected and set for epoch 3.3 at Bitcoin block 923,222
1621

1722
### Changed
1823

sample/conf/testnet-follower-conf.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ start_height = 71525
8989

9090
[[burnchain.epochs]]
9191
epoch_name = "3.3"
92-
start_height = 108800
92+
start_height = 109280

sample/conf/testnet-miner-conf.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ start_height = 71525
8585

8686
[[burnchain.epochs]]
8787
epoch_name = "3.3"
88-
start_height = 108800
88+
start_height = 109280

sample/conf/testnet-signer.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,4 @@ start_height = 71525
8787

8888
[[burnchain.epochs]]
8989
epoch_name = "3.3"
90-
start_height = 108800
90+
start_height = 109280

stackslib/src/core/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ pub const BITCOIN_MAINNET_STACKS_31_BURN_HEIGHT: u64 = 875_000;
108108
/// This is Epoch-3.2, activation height proposed in SIP-031
109109
pub const BITCOIN_MAINNET_STACKS_32_BURN_HEIGHT: u64 = 907_740;
110110
/// This is Epoch-3.3, activation timing proposed in SIP-033
111-
pub const BITCOIN_MAINNET_STACKS_33_BURN_HEIGHT: u64 = 922_480;
111+
pub const BITCOIN_MAINNET_STACKS_33_BURN_HEIGHT: u64 = 923_222;
112112

113113
/// Bitcoin mainline testnet3 activation heights.
114114
/// TODO: No longer used since testnet3 is dead, so remove.

versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Update these values when a new release is created.
22
# `stacks-common/build.rs` will automatically update `versions.rs` with these values.
3-
stacks_node_version = "3.3.0.0.0-rc1"
4-
stacks_signer_version = "3.3.0.0.0-rc1"
3+
stacks_node_version = "3.3.0.0.0"
4+
stacks_signer_version = "3.3.0.0.0.0"

0 commit comments

Comments
 (0)