diff --git a/README.md b/README.md index 2b991bb..b24d36a 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Current Features: Depends on `GNU Make`, obviously and `Python >=3.7`, and `bash` (or `zsh`). Wait python?!?!, I'm not `pip` installing some package just to parse my makefile. -I agree, all you need is one file [`.task.mk`](https://github.com/daylinmorgan/task.mk/blob/main/task.mk) +I agree, all you need is one file [`.task.mk`](https://github.com/daylinmorgan/task.mk/v2024.1001/task.mk) You can automagically include it with just two additional lines to your `Makefile` (and probably one to your `.gitignore`) and you're good to go. ## Setup @@ -43,14 +43,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.2/task.mk -o .task.mk)) +$(if $(filter help,$(MAKECMDGOALS)),$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v2024.1001/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.2/task.mk -o .task.mk) +$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v2024.1001/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 5c0aa47..9f958a5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -27,7 +27,7 @@ Current Features: Depends on `GNU Make`, obviously and `Python >=3.7`, and `bash` (or `zsh`). Wait python?!?!, I'm not `pip` installing some package just to parse my makefile. -I agree, all you need is one file [`.task.mk`](https://github.com/daylinmorgan/task.mk/blob/main/task.mk) +I agree, all you need is one file [`.task.mk`](https://github.com/daylinmorgan/task.mk/v2024.1001/task.mk) You can automagically include it with just two additional lines to your `Makefile` (and probably one to your `.gitignore`) and you're good to go. ## Setup @@ -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.2/task.mk -o .task.mk)) +$(if $(filter help,$(MAKECMDGOALS)),$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v2024.1001/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.2/task.mk -o .task.mk) +$(if $(wildcard .task.mk),,.task.mk: ; curl -fsSL https://raw.githubusercontent.com/daylinmorgan/task.mk/v2024.1001/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 fcc7b63..abf7055 100644 --- a/docs/init +++ b/docs/init @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -e -LATEST_TASKMK_VERSION="v23.1.2" +LATEST_TASKMK_VERSION="v2024.1001" VERSION=${TASKMK_VERSION:-$LATEST_TASKMK_VERSION} printf "Initializing Task.mk (%s) for repo\n" "$VERSION" if [ -f "./.task.mk" ]; then