Skip to content

Commit

Permalink
feat: stable wizard v2 release support (#20)
Browse files Browse the repository at this point in the history
* chore: testing prerelease

* chore: testing ci

* feat: init wizard v2 stable release support

BREAKING CHANGE: using latest algokit-cli version which relies on notion of workspaces which makes this release a breaking change. Standalone react, beaker and puya templates are still available for all older cli versions (up to 1.8.0), however latest full stack template requires minimum version of cli to be at least 1.12.0
  • Loading branch information
aorumbayev authored Feb 26, 2024
1 parent 2ccd4cc commit 8009a26
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
run: pipx install poetry

- name: Install algokit
run: pipx install git+https://github.com/algorandfoundation/algokit-cli@feat/init_wizard_v2 --force
run: pipx install algokit

- name: Set up Python 3.12
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion examples/production_beaker_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/production_puya_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/production_tealscript_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/starter_beaker_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/starter_puya_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion examples/starter_tealscript_react/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion template_content/.algokit.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[algokit]
min_version = "v1.12.0-beta.1"
min_version = "v1.12.0"

[project]
type = 'workspace'
Expand Down
2 changes: 1 addition & 1 deletion template_content/check_algokit_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
logger = logging.getLogger(__name__)

# algokit cli version that in which support for wizard v2 was first introduced
ALGOKIT_MIN_VERSION = "1.11.4"
ALGOKIT_MIN_VERSION = "1.12.0"


def get_algokit_version():
Expand Down

0 comments on commit 8009a26

Please sign in to comment.