From 0342513cf81bbfa9922667223e09d719572972ac Mon Sep 17 00:00:00 2001 From: Josh Spicer Date: Fri, 22 Jul 2022 16:09:42 +0000 Subject: [PATCH] update --- src/go/devcontainer-feature.json | 2 +- src/go/install.sh | 2 +- src/powershell/devcontainer-feature.json | 2 +- src/powershell/install.sh | 2 +- src/python/devcontainer-feature.json | 2 +- src/python/install.sh | 2 +- src/ruby/devcontainer-feature.json | 2 +- src/ruby/install.sh | 3 ++- src/rust/devcontainer-feature.json | 2 +- src/rust/install.sh | 2 +- 10 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/go/devcontainer-feature.json b/src/go/devcontainer-feature.json index c24b753..df3537c 100644 --- a/src/go/devcontainer-feature.json +++ b/src/go/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "go", - "version": "1.0.7", + "version": "1.0.8", "name": "Go", "description": "Installs Go and common Go utilities. Auto-detects latest version and installs needed dependencies.", "options": { diff --git a/src/go/install.sh b/src/go/install.sh index 46add81..13116d5 100644 --- a/src/go/install.sh +++ b/src/go/install.sh @@ -7,7 +7,7 @@ # Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/go.md # Maintainer: The VS Code and Codespaces Teams -# I have made a change! +# I have made another change! TARGET_GO_VERSION=${VERSION:-"latest"} diff --git a/src/powershell/devcontainer-feature.json b/src/powershell/devcontainer-feature.json index 84288bc..4517584 100644 --- a/src/powershell/devcontainer-feature.json +++ b/src/powershell/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "powershell", - "version": "1.0.8", + "version": "1.0.9", "name": "PowerShell", "description": "Installs PowerShell along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like gpg.", "options": { diff --git a/src/powershell/install.sh b/src/powershell/install.sh index 4e3f4bf..32dfaeb 100644 --- a/src/powershell/install.sh +++ b/src/powershell/install.sh @@ -7,7 +7,7 @@ # Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/powershell.md # Maintainer: The VS Code and Codespaces Teams -# I have made a change! +# I have made another change! set -e POWERSHELL_VERSION=${VERSION:-"latest"} diff --git a/src/python/devcontainer-feature.json b/src/python/devcontainer-feature.json index 746ba5c..386d308 100644 --- a/src/python/devcontainer-feature.json +++ b/src/python/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "python", - "version": "1.0.7", + "version": "1.0.8", "name": "Python", "description": "Installs the provided version of Python, as well as PIPX, and other common Python utilities. JupyterLab is conditionally installed with the python feature. Note: May require source code compilation.", "options": { diff --git a/src/python/install.sh b/src/python/install.sh index 653ba1c..182474b 100755 --- a/src/python/install.sh +++ b/src/python/install.sh @@ -7,7 +7,7 @@ # Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/python.md # Maintainer: The VS Code and Codespaces Teams -# I have made a change! +# I have made another change! PYTHON_VERSION=${VERSION:-"latest"} # 'system' checks the base image first, else installs 'latest' INSTALL_PYTHON_TOOLS=${INSTALL_PYTHON_TOOLS:-"true"} diff --git a/src/ruby/devcontainer-feature.json b/src/ruby/devcontainer-feature.json index ae8aad2..d65b2c2 100644 --- a/src/ruby/devcontainer-feature.json +++ b/src/ruby/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "ruby", - "version": "1.0.11", + "version": "1.0.12", "name": "Ruby (via rvm)", "description": "Installs Ruby, rvm, rbenv, common Ruby utilities, and needed dependencies.", "options": { diff --git a/src/ruby/install.sh b/src/ruby/install.sh index ec671ce..05d1e51 100644 --- a/src/ruby/install.sh +++ b/src/ruby/install.sh @@ -7,7 +7,8 @@ # Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/ruby.md # Maintainer: The VS Code and Codespaces Teams -# I have made a change! +# I have made another change! + RUBY_VERSION=${VERSION:-"latest"} USERNAME=${USERNAME:-"automatic"} diff --git a/src/rust/devcontainer-feature.json b/src/rust/devcontainer-feature.json index 9016694..a9c0ce0 100644 --- a/src/rust/devcontainer-feature.json +++ b/src/rust/devcontainer-feature.json @@ -1,6 +1,6 @@ { "id": "rust", - "version": "1.0.7", + "version": "1.0.8", "name": "Rust", "description": "Installs Rust, common Rust utilities, and their required dependencies", "options": { diff --git a/src/rust/install.sh b/src/rust/install.sh index f829a30..2a9031e 100644 --- a/src/rust/install.sh +++ b/src/rust/install.sh @@ -7,7 +7,7 @@ # Docs: https://github.com/microsoft/vscode-dev-containers/blob/main/script-library/docs/rust.md # Maintainer: The VS Code and Codespaces Teams -# I have made a change! +# I have made another change! RUST_VERSION=${VERSION:-"latest"} RUSTUP_PROFILE=${PROFILE:-"minimal"}