diff --git a/docs/choosing-your-image.md b/docs/choosing-your-image.md index 724b0e9..ece2d12 100644 --- a/docs/choosing-your-image.md +++ b/docs/choosing-your-image.md @@ -76,7 +76,7 @@ installs plcc-ng and Python; add language features as needed: The feature's `version` option pins a plcc-ng release from [PyPI](https://pypi.org/project/plcc-ng/), e.g. -`{ "version": "2.0.0" }`; the default is `latest`. +`{ "version": "2.0.1" }`; the default is `latest`. Note: the first Codespaces start of a feature-composed devcontainer builds the container from scratch (several minutes). The prebuilt images exist to diff --git a/images/plcc-ng-full/.devcontainer/devcontainer.json b/images/plcc-ng-full/.devcontainer/devcontainer.json index 46bd83c..fc01cf5 100644 --- a/images/plcc-ng-full/.devcontainer/devcontainer.json +++ b/images/plcc-ng-full/.devcontainer/devcontainer.json @@ -12,7 +12,7 @@ }, "ghcr.io/devcontainers-extra/features/haskell:2": {}, "./features/plcc-ng": { - "version": "2.0.0" + "version": "2.0.1" } } } diff --git a/images/plcc-ng/.devcontainer/devcontainer.json b/images/plcc-ng/.devcontainer/devcontainer.json index 51f181b..b5c9714 100644 --- a/images/plcc-ng/.devcontainer/devcontainer.json +++ b/images/plcc-ng/.devcontainer/devcontainer.json @@ -11,7 +11,7 @@ "version": "lts" }, "./features/plcc-ng": { - "version": "2.0.0" + "version": "2.0.1" } } } diff --git a/src/plcc-ng/devcontainer-feature.json b/src/plcc-ng/devcontainer-feature.json index ea9052e..5fcbec1 100644 --- a/src/plcc-ng/devcontainer-feature.json +++ b/src/plcc-ng/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "plcc-ng", - "version": "1.0.1", + "version": "1.0.2", "name": "PLCC-NG", "description": "Installs plcc-ng (Programming Language Compiler Compiler, next generation) from PyPI.", "documentationURL": "https://github.com/ourPLCC/plcc-ng-devcontainer", @@ -10,9 +10,9 @@ "default": "latest", "proposals": [ "latest", - "2.0.0" + "2.0.1" ], - "description": "PyPI version of plcc-ng to install (e.g. '2.0.0'), or 'latest' for the newest release." + "description": "PyPI version of plcc-ng to install (e.g. '2.0.1'), or 'latest' for the newest release." } }, "dependsOn": { diff --git a/test/plcc-ng/pinned_version.sh b/test/plcc-ng/pinned_version.sh index c4647bd..b77914e 100755 --- a/test/plcc-ng/pinned_version.sh +++ b/test/plcc-ng/pinned_version.sh @@ -9,7 +9,7 @@ source dev-container-features-test-lib # Must match the version pinned in scenarios.json. Both are updated together # by .github/workflows/check-plcc-ng-release.yml — keep this line's shape # (EXPECTED_VERSION="") intact so that update keeps working. -EXPECTED_VERSION="2.0.0" +EXPECTED_VERSION="2.0.1" check "plcc-version runs" plcc-version check "exact version installed" bash -c \ diff --git a/test/plcc-ng/scenarios.json b/test/plcc-ng/scenarios.json index ccae082..5a21df8 100644 --- a/test/plcc-ng/scenarios.json +++ b/test/plcc-ng/scenarios.json @@ -3,7 +3,7 @@ "image": "mcr.microsoft.com/devcontainers/base:ubuntu", "features": { "plcc-ng": { - "version": "2.0.0" + "version": "2.0.1" } } }