Skip to content

Commit

Permalink
Bump version 3.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout committed Jun 24, 2024
1 parent d225e17 commit 917839f
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog

## [Unreleased]
## [3.13.0](https://github.com/baking-bad/pytezos/compare/3.12.1...3.13.0) (2024-06-24)

### Added

* ParisCnet protocol support

### Changed

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pytezos"
version = "3.12.1"
version = "3.13.0"
description = "Python toolkit for Tezos"
license = "MIT"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion src/pytezos/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def smartpy_compile(

@cli.command(help='Run containerized sandbox node')
@click.option('--image', type=str, help='Docker image to use', default=DOCKER_IMAGE)
@click.option('--protocol', type=click.Choice(['paris']), help='Protocol to use', default='paris')
@click.option('--protocol', type=click.Choice(['parisc']), help='Protocol to use', default='parisc')
@click.option('--port', '-p', type=int, help='Port to expose', default=TEZOS_NODE_PORT)
@click.option('--interval', '-i', type=float, help='Interval between baked blocks (in seconds)', default=1.0)
@click.option('--blocks', '-b', type=int, help='Number of blocks to bake before exit')
Expand Down
28 changes: 27 additions & 1 deletion src/pytezos/rpc/docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -4272,7 +4272,9 @@
},
"props": [
"inbox",
"index"
"index",
"parisb2_activation_level",
"previous_commitment_period"
]
},
"/chains/{}/blocks/{}/context/raw/json/smart_rollup/inbox": {
Expand Down Expand Up @@ -4828,6 +4830,30 @@
"ret": "String"
}
},
"/chains/{}/blocks/{}/context/raw/json/smart_rollup/parisb2_activation_level": {
"GET": {
"descr": "\u00af\\_(\u30c4)_/\u00af",
"args": [
{
"name": "depth",
"descr": "\u00af\\_(\u30c4)_/\u00af"
}
],
"ret": "Integer"
}
},
"/chains/{}/blocks/{}/context/raw/json/smart_rollup/previous_commitment_period": {
"GET": {
"descr": "\u00af\\_(\u30c4)_/\u00af",
"args": [
{
"name": "depth",
"descr": "\u00af\\_(\u30c4)_/\u00af"
}
],
"ret": "Integer"
}
},
"/chains/{}/blocks/{}/context/raw/json/staking_balance": {
"GET": {
"descr": "\u00af\\_(\u30c4)_/\u00af",
Expand Down

0 comments on commit 917839f

Please sign in to comment.