Skip to content

Commit

Permalink
Bump version 3.13.0 (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
droserasprout authored Jun 24, 2024
1 parent d225e17 commit f79ad1c
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 21 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ jobs:

steps:
- name: Check out the repo
uses: actions/checkout@v2
with:
fetch-depth: 0
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,17 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry

- name: Configure poetry
run: poetry config installer.modern-installation false

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
python-version: "3.12"
# FIXME:
# cache: 'poetry'

- name: Install binary dependencies
run: OSTYPE=$OSTYPE make install-deps
Expand Down
8 changes: 2 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,19 +13,15 @@ jobs:
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry

- name: Configure poetry
run: poetry config installer.modern-installation false

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: "poetry"
python-version: "3.12"

- name: Install binary dependencies
run: OSTYPE=$OSTYPE make install-deps
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
# arch: arm64
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install poetry
run: pipx install poetry
Expand All @@ -53,7 +53,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# FIXME: temporary
# FIXME:
# cache: 'poetry'

- name: Install binary dependencies
Expand Down
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 f79ad1c

Please sign in to comment.