Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/choosing-your-image.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion images/plcc-ng-full/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"ghcr.io/devcontainers-extra/features/haskell:2": {},
"./features/plcc-ng": {
"version": "2.0.0"
"version": "2.0.1"
}
}
}
2 changes: 1 addition & 1 deletion images/plcc-ng/.devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"version": "lts"
},
"./features/plcc-ng": {
"version": "2.0.0"
"version": "2.0.1"
}
}
}
6 changes: 3 additions & 3 deletions src/plcc-ng/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion test/plcc-ng/pinned_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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="<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 \
Expand Down
2 changes: 1 addition & 1 deletion test/plcc-ng/scenarios.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
"features": {
"plcc-ng": {
"version": "2.0.0"
"version": "2.0.1"
}
}
}
Expand Down
Loading