From 1fbf19d61237704aa958e28e913f075950ed3e66 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Sun, 29 Jan 2023 21:51:43 -0600 Subject: [PATCH] release: v23.1.2 --- README.md | 4 ++-- docs/index.md | 4 ++-- docs/init | 2 +- task.mk | 3 +-- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1c0a463..5ac9b8d 100644 --- a/README.md +++ b/README.md @@ -42,14 +42,14 @@ If someone tries to invoke `make help` it will download `.task.mk` for them. ```make -include .task.mk -$(if $(filter help,$(MAKECMDGOALS)),$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.1/task.mk -o .task.mk)) +$(if $(filter help,$(MAKECMDGOALS)),$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.2/task.mk -o .task.mk)) ``` If you plan to use any features besides the help prompt you may want to instead commit `.task.mk` to version control or drop the `$(MAKECMDGOALS)` check so it's always downloaded once `make` is invoked. ```make -include .task.mk -$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.1/task.mk -o .task.mk) +$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.2/task.mk -o .task.mk) ``` For more info see the [documentation](https://gh.dayl.in/task.mk). diff --git a/docs/index.md b/docs/index.md index 1c0a463..5ac9b8d 100644 --- a/docs/index.md +++ b/docs/index.md @@ -42,14 +42,14 @@ If someone tries to invoke `make help` it will download `.task.mk` for them. ```make -include .task.mk -$(if $(filter help,$(MAKECMDGOALS)),$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.1/task.mk -o .task.mk)) +$(if $(filter help,$(MAKECMDGOALS)),$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.2/task.mk -o .task.mk)) ``` If you plan to use any features besides the help prompt you may want to instead commit `.task.mk` to version control or drop the `$(MAKECMDGOALS)` check so it's always downloaded once `make` is invoked. ```make -include .task.mk -$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.1/task.mk -o .task.mk) +$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v23.1.2/task.mk -o .task.mk) ``` For more info see the [documentation](https://gh.dayl.in/task.mk). diff --git a/docs/init b/docs/init index 96dbf04..fcc7b63 100644 --- a/docs/init +++ b/docs/init @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -e -LATEST_TASKMK_VERSION="v23.1.1" +LATEST_TASKMK_VERSION="v23.1.2" VERSION=${TASKMK_VERSION:-$LATEST_TASKMK_VERSION} printf "Initializing Task.mk (%s) for repo\n" "$VERSION" if [ -f "./.task.mk" ]; then diff --git a/task.mk b/task.mk index bb3574b..5ca85d0 100644 --- a/task.mk +++ b/task.mk @@ -1,7 +1,7 @@ # }> [github.com/daylinmorgan/task.mk] <{ # # Copyright (c) 2022 Daylin Morgan # MIT License -TASKMK_VERSION ?= v23.1.1-18-g1b8bdaa-dev +TASKMK_VERSION ?= 23.1.2 # task.mk should be included at the bottom of your Makefile with `-include .task.mk` # See below for the standard configuration options that should be set prior to including this file. # You can update your .task.mk with `make _update-task.mk` @@ -19,7 +19,6 @@ WRAP ?= 100 # python f-string literals EPILOG ?= USAGE ?={ansi.header}usage{ansi.end}:\n make \n -TASKMK_SHELL ?= PHONIFY ?= # ---- [python scripts] ---- # define help_py